nixpkgs/pkgs/development/libraries/jansson/default.nix

19 lines
507 B
Nix
Raw Normal View History

2013-05-11 23:34:07 +02:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "jansson-2.11";
2013-05-11 23:34:07 +02:00
src = fetchurl {
url = "http://www.digip.org/jansson/releases/${name}.tar.gz";
sha256 = "1x5jllzzqamq6kahx9d9a5mrarm9m3f30vfxvcqpi6p4mcnz91bf";
2013-05-11 23:34:07 +02:00
};
2015-05-01 23:36:51 +02:00
meta = with stdenv.lib; {
homepage = http://www.digip.org/jansson/;
description = "C library for encoding, decoding and manipulating JSON data";
2015-05-01 23:36:51 +02:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
2013-05-11 23:34:07 +02:00
};
}