2014-05-03 16:17:34 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook }:
|
2011-11-06 20:03:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-05-01 15:23:14 +01:00
|
|
|
name = "json-c-0.12.1";
|
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";
|
2017-05-01 15:23:14 +01:00
|
|
|
sha256 = "148jkvpnxmg1fwwigp0nq9qbd5vzpnmgiw3y34w7k6fymalpsqas";
|
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
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ]; # won't configure without it, no idea why
|
2014-05-03 16:17:34 +01:00
|
|
|
|
2017-11-12 11:34:53 +00:00
|
|
|
# probably OK after update: https://github.com/json-c/json-c/pull/365
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-fallthrough" ];
|
|
|
|
|
2014-05-03 16:17:34 +01:00
|
|
|
# compatibility hack (for mypaint at least)
|
|
|
|
postInstall = ''
|
2015-10-06 16:07:50 +01:00
|
|
|
ln -s json-c.pc "$dev/lib/pkgconfig/json.pc"
|
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";
|
2014-05-03 16:17:34 +01:00
|
|
|
homepage = https://github.com/json-c/json-c/wiki;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|