add libjson library
svn path=/nixpkgs/trunk/; revision=30168
This commit is contained in:
parent
752e53e95d
commit
2a0816fb45
16
pkgs/development/libraries/libjson/default.nix
Normal file
16
pkgs/development/libraries/libjson/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libjson-7.4.0";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libjson/libjson_7.4.0.zip";
|
||||
sha256 = "0rd6m3r3acm7xq6f0mbyyhc3dnwmiga60cws29yjl6nx2f9h3r0x";
|
||||
};
|
||||
buildInputs = [ unzip ];
|
||||
makeFlags = "prefix=$out";
|
||||
meta = {
|
||||
homepage = "http://libjson.sourceforge.net/";
|
||||
description = "A JSON reader and writer";
|
||||
longDescription = "A JSON reader and writer which is super-effiecient and usually runs circles around other JSON libraries. It's highly customizable to optimize for your particular project, and very lightweight. For Windows, OSX, or Linux. Works in any language.";
|
||||
};
|
||||
}
|
@ -3720,6 +3720,8 @@ let
|
||||
|
||||
json_glib = callPackage ../development/libraries/json-glib { };
|
||||
|
||||
libjson = callPackage ../development/libraries/libjson { };
|
||||
|
||||
judy = callPackage ../development/libraries/judy { };
|
||||
|
||||
krb5 = callPackage ../development/libraries/kerberos/krb5.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user