about summary refs log tree commit diff
path: root/pkgs/development/libraries/libjson/default.nix
blob: f49c885c066b1b1c617ba00f15db28ef4779f066 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.";
  };
}