summary refs log tree commit diff
path: root/pkgs/development/libraries/json-c
diff options
context:
space:
mode:
authorJason "Don" O'Conal <lovek323@gmail.com>2013-11-12 22:23:44 +0000
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-11-17 12:06:38 +0100
commitf49f9225d5d69797e3ddbf1a0a13776dbaa77fa7 (patch)
tree8707e249d193d23c802063cb2bd0b6db31c50c49 /pkgs/development/libraries/json-c
parent452b25b6c33c04a745008457fcb9f8f45de054c0 (diff)
downloadnixpkgs-f49f9225d5d69797e3ddbf1a0a13776dbaa77fa7.tar
nixpkgs-f49f9225d5d69797e3ddbf1a0a13776dbaa77fa7.tar.gz
nixpkgs-f49f9225d5d69797e3ddbf1a0a13776dbaa77fa7.tar.bz2
nixpkgs-f49f9225d5d69797e3ddbf1a0a13776dbaa77fa7.tar.lz
nixpkgs-f49f9225d5d69797e3ddbf1a0a13776dbaa77fa7.tar.xz
nixpkgs-f49f9225d5d69797e3ddbf1a0a13776dbaa77fa7.tar.zst
nixpkgs-f49f9225d5d69797e3ddbf1a0a13776dbaa77fa7.zip
newsbeuter: add dev expression
Diffstat (limited to 'pkgs/development/libraries/json-c')
-rw-r--r--pkgs/development/libraries/json-c/0.11.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/json-c/0.11.nix b/pkgs/development/libraries/json-c/0.11.nix
new file mode 100644
index 00000000000..029921ee08c
--- /dev/null
+++ b/pkgs/development/libraries/json-c/0.11.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "json-c-0.11";
+  src = fetchurl {
+    url    = "https://github.com/json-c/json-c/archive/json-c-0.11-20130402.tar.gz";
+    sha256 = "1m8fy7lbahv1r7yqbhw4pl057sxmmgjihm1fsvc3h66710s2i24r";
+  };
+  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.
+    '';
+  };
+}