2020-06-18 11:34:51 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, cmake }:
|
2011-11-06 20:03:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-06-18 11:34:51 +01:00
|
|
|
name = "json-c-0.14";
|
2011-11-06 20:03:07 +00:00
|
|
|
src = fetchurl {
|
2014-05-03 16:17:34 +01:00
|
|
|
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
|
2020-06-18 11:34:51 +01:00
|
|
|
sha256 = "1yia8417qljmczs9w3rn4c4i2p2iywq098pgrj11s81599j4x4cr";
|
2011-11-06 20:03:07 +00:00
|
|
|
};
|
2014-05-03 16:17:34 +01:00
|
|
|
|
2020-06-17 21:06:05 +01:00
|
|
|
patches = [
|
|
|
|
# https://nvd.nist.gov/vuln/detail/CVE-2020-12762
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2020-12762.patch";
|
2020-06-18 11:34:51 +01:00
|
|
|
url = "https://github.com/json-c/json-c/commit/5d6fa331418d49f1bd488553fd1cfa9ab023fabb.patch";
|
|
|
|
sha256 = "0aar7kgbycqxnhh0lrr61adfbb903nbapalhs5i6h8anxwy1ylcm";
|
2020-06-17 21:06:05 +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
|
|
|
|
2013-11-17 11:13:24 +00:00
|
|
|
meta = with stdenv.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
|
|
|
};
|
|
|
|
}
|