json_c: 0.13.1 -> 0.14
Changes: https://github.com/json-c/json-c/blob/json-c-0.14-20200419/ChangeLog
This commit is contained in:
parent
7e5bfbc85e
commit
9e7f109ef7
@ -1,24 +1,24 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, autoconf }:
|
{ stdenv, fetchurl, fetchpatch, cmake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "json-c-0.13.1";
|
name = "json-c-0.14";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
|
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
|
||||||
sha256 = "0ch1v18wk703bpbyzj7h1mkwvsw4rw4qdwvgykscypvqq10678ll";
|
sha256 = "1yia8417qljmczs9w3rn4c4i2p2iywq098pgrj11s81599j4x4cr";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# https://nvd.nist.gov/vuln/detail/CVE-2020-12762
|
# https://nvd.nist.gov/vuln/detail/CVE-2020-12762
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
name = "CVE-2020-12762.patch";
|
name = "CVE-2020-12762.patch";
|
||||||
url = "https://github.com/json-c/json-c/commit/865b5a65199973bb63dff8e47a2f57e04fec9736.patch";
|
url = "https://github.com/json-c/json-c/commit/5d6fa331418d49f1bd488553fd1cfa9ab023fabb.patch";
|
||||||
sha256 = "1g5afk4khhm1sb70xrva1pyznshcw3ipzp1g5z60dpzxy303pp6h";
|
sha256 = "0aar7kgbycqxnhh0lrr61adfbb903nbapalhs5i6h8anxwy1ylcm";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf ]; # for autoheader
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A JSON implementation in C";
|
description = "A JSON implementation in C";
|
||||||
|
Loading…
Reference in New Issue
Block a user