json-c: 0.15 -> 0.16

This commit is contained in:
Sandro Jäckel 2022-06-03 22:02:23 +02:00
parent 30c3cc499d
commit 06dd4caa34
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "json-c"; pname = "json-c";
version = "0.15"; version = "0.16";
src = fetchurl { src = fetchurl {
url = "https://s3.amazonaws.com/json-c_releases/releases/${pname}-${version}.tar.gz"; url = "https://s3.amazonaws.com/json-c_releases/releases/${pname}-${version}.tar.gz";
sha256 = "1im484iz08j3gmzpw07v16brwq46pxxj65i996kkp2vivcfhmn5q"; sha256 = "sha256-jkWsj5bsd5Hq87t+5Q6cIQC7vIe40PHQMMW6igKI2Ws=";
}; };
outputs = [ "out" "dev" ]; outputs = [ "out" "dev" ];
@ -15,16 +15,15 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "A JSON implementation in C"; description = "A JSON implementation in C";
homepage = "https://github.com/json-c/json-c/wiki";
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
license = licenses.mit;
longDescription = '' longDescription = ''
JSON-C implements a reference counting object model that allows you to JSON-C implements a reference counting object model that allows you to
easily construct JSON objects in C, output them as JSON formatted strings easily construct JSON objects in C, output them as JSON formatted strings
and parse JSON formatted strings back into the C representation of JSON and parse JSON formatted strings back into the C representation of JSON
objects. objects.
''; '';
homepage = "https://github.com/json-c/json-c/wiki";
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
license = licenses.mit;
}; };
} }