lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 22 lines 759 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.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 meta = with stdenv.lib; { 10 description = "A JSON implementation in C"; 11 homepage = https://github.com/json-c/json-c/wiki; 12 maintainers = with maintainers; [ lovek323 ]; 13 platforms = platforms.unix; 14 15 longDescription = '' 16 JSON-C implements a reference counting object model that allows you to 17 easily construct JSON objects in C, output them as JSON formatted strings 18 and parse JSON formatted strings back into the C representation of JSON 19 objects. 20 ''; 21 }; 22}