nixpkgs/pkgs/development/libraries/json-c/default.nix
R. RyanTM b795452499 json_c: 0.13 -> 0.13.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/json-c/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.13.1 with grep in /nix/store/3ckha7sbyy0la7qswa3b01n3wgnccqsf-json-c-0.13.1
- directory tree listing: https://gist.github.com/cad3ba1104556e76a7088a0fd5427df9
2018-03-31 06:17:01 -07:00

28 lines
859 B
Nix

{ stdenv, fetchurl, autoconf }:
stdenv.mkDerivation rec {
name = "json-c-0.13.1";
src = fetchurl {
url = "https://s3.amazonaws.com/json-c_releases/releases/${name}-nodoc.tar.gz";
sha256 = "0ch1v18wk703bpbyzj7h1mkwvsw4rw4qdwvgykscypvqq10678ll";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ autoconf ]; # for autoheader
meta = with stdenv.lib; {
description = "A JSON implementation in C";
homepage = https://github.com/json-c/json-c/wiki;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
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.
'';
};
}