Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

json-c-0-11: remove

(cherry picked from commit ddba7e3ae9a87dba207296a383bce60e4815e7d2)

authored by

Robin Gloster and committed by
Vladimír Čunát
7539b80e b5088858

-26
-25
pkgs/development/libraries/json-c/0.11.nix
··· 1 - { stdenv, fetchurl }: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "json-c-0.11"; 5 - src = fetchurl { 6 - url = "https://github.com/json-c/json-c/archive/json-c-0.11-20130402.tar.gz"; 7 - sha256 = "1m8fy7lbahv1r7yqbhw4pl057sxmmgjihm1fsvc3h66710s2i24r"; 8 - }; 9 - 10 - NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-fallthrough" ]; 11 - 12 - meta = with stdenv.lib; { 13 - description = "A JSON implementation in C"; 14 - homepage = https://github.com/json-c/json-c/wiki; 15 - maintainers = with maintainers; [ lovek323 ]; 16 - platforms = platforms.unix; 17 - 18 - longDescription = '' 19 - JSON-C implements a reference counting object model that allows you to 20 - easily construct JSON objects in C, output them as JSON formatted strings 21 - and parse JSON formatted strings back into the C representation of JSON 22 - objects. 23 - ''; 24 - }; 25 - }
-1
pkgs/top-level/all-packages.nix
··· 9353 9353 9354 9354 json-glib = callPackage ../development/libraries/json-glib { }; 9355 9355 9356 - json-c-0-11 = callPackage ../development/libraries/json-c/0.11.nix { }; # vulnerable 9357 9356 json_c = callPackage ../development/libraries/json-c { }; 9358 9357 9359 9358 jsoncpp = callPackage ../development/libraries/jsoncpp { };