summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-18 22:41:49 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-02-01 18:23:23 +0100
commit5c330746607296142f251c97b3bdb410c5611f45 (patch)
tree6ea4671f76f7515dbb71c79dfe9dc63f8d9e9025
parent9ff91f967cb6ad74bb621f5dfa07ce42a83c29dc (diff)
cjson: init at 1.7.14init-cjson
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--pkgs/development/libraries/cjson/default.nix23
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/libraries/cjson/default.nix b/pkgs/development/libraries/cjson/default.nix
new file mode 100644
index 000000000000..1a5d4b77f6c0
--- /dev/null
+++ b/pkgs/development/libraries/cjson/default.nix
@@ -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;
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index fb49cde2e6bb..dcb3d5d8db35 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 {