cjson: init at 1.7.14

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2020-12-18 22:41:49 +01:00
parent 9ff91f967c
commit 5c33074660
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cjson";
version = "1.7.14";
src = fetchFromGitHub {
owner = "DaveGamble";
repo = "cJSON";
rev = "v${version}";
sha256 = "1a3i9ydl65dgwgmlg79n5q8qilmjkaakq56sam1w25zcrd8jy11q";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
homepage = "https://github.com/DaveGamble/cJSON";
description = "Ultralightweight JSON parser in ANSI C";
license = licenses.mit;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.unix;
};
}

View file

@ -3080,6 +3080,8 @@ in
cjdns = callPackage ../tools/networking/cjdns { };
cjson = callPackage ../development/libraries/cjson { };
cksfv = callPackage ../tools/networking/cksfv { };
clementine = libsForQt514.callPackage ../applications/audio/clementine {