2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake }:
|
2011-11-06 20:03:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-05 07:34:56 +00:00
|
|
|
pname = "json-c";
|
|
|
|
version = "0.15";
|
|
|
|
|
2011-11-06 20:03:07 +00:00
|
|
|
src = fetchurl {
|
2020-11-05 07:34:56 +00:00
|
|
|
url = "https://s3.amazonaws.com/json-c_releases/releases/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "1im484iz08j3gmzpw07v16brwq46pxxj65i996kkp2vivcfhmn5q";
|
2011-11-06 20:03:07 +00:00
|
|
|
};
|
2014-05-03 16:17:34 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-06 16:07:50 +01:00
|
|
|
|
2020-06-18 11:34:51 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-05-03 16:17:34 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2011-11-06 20:03:07 +00:00
|
|
|
description = "A JSON implementation in C";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/json-c/json-c/wiki";
|
2014-05-03 16:17:34 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2020-06-27 00:36:33 +01:00
|
|
|
license = licenses.mit;
|
2014-05-03 16:17:34 +01:00
|
|
|
|
2013-11-17 11:13:24 +00: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 20:03:07 +00:00
|
|
|
};
|
|
|
|
}
|