summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/jshon/default.nix
blob: 4b35ba0cce29ecdb78ff23d174cfb21249d2e6f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, lib, fetchFromGitHub, jansson }:

stdenv.mkDerivation rec {
  name = "jshon-20140712";

  rev = "a61d7f2f85f4627bc3facdf951746f0fd62334b7";
  sha256 = "b0365e58553b9613a5636545c5bfd4ad05ab5024f192e1cb1d1824bae4e1a380";

  src = fetchFromGitHub {
    inherit rev sha256;
    owner = "keenerd";
    repo = "jshon";
  };

  buildInputs = [ jansson ];

  patchPhase = 
    ''
      substituteInPlace Makefile --replace "/usr/" "/"
    '';

  preInstall = 
    ''
      export DESTDIR=$out
    '';

  meta = with lib; {
    homepage = http://kmkeen.com/jshon;
    description = "JSON parser designed for maximum convenience within the shell";
    license = licenses.free;
    platforms = platforms.all;
    maintainers = with maintainers; [ rushmorem ];
  };
}