2018-03-05 17:00:03 +01:00
|
|
|
{ stdenv, fetchurl, autoconf }:
|
2011-11-06 21:03:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-31 15:17:01 +02:00
|
|
|
name = "json-c-0.13.1";
|
2011-11-06 21:03:07 +01:00
|
|
|
src = fetchurl {
|
2014-05-03 17:17:34 +02:00
|
|
|
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
|
2018-03-31 15:17:01 +02:00
|
|
|
sha256 = "0ch1v18wk703bpbyzj7h1mkwvsw4rw4qdwvgykscypvqq10678ll";
|
2011-11-06 21:03:07 +01:00
|
|
|
};
|
2014-05-03 17:17:34 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-06 17:07:50 +02:00
|
|
|
|
2018-03-05 17:00:03 +01:00
|
|
|
nativeBuildInputs = [ autoconf ]; # for autoheader
|
2014-05-03 17:17:34 +02:00
|
|
|
|
2013-11-17 12:13:24 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-11-06 21:03:07 +01:00
|
|
|
description = "A JSON implementation in C";
|
2014-05-03 17:17:34 +02:00
|
|
|
homepage = https://github.com/json-c/json-c/wiki;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
2013-11-17 12:13:24 +01:00
|
|
|
longDescription = ''
|
|
|
|
JSON-C implements a reference counting object model that allows you to
|
|
|
|
easily construct JSON objects in C, output them as JSON formatted strings
|
|
|
|
and parse JSON formatted strings back into the C representation of JSON
|
|
|
|
objects.
|
|
|
|
'';
|
2011-11-06 21:03:07 +01:00
|
|
|
};
|
|
|
|
}
|