about summary refs log tree commit diff
path: root/pkgs/development/tools/jo/default.nix
blob: a730cde042e2bd5f30569c94c0bcd5aef7fe9ff1 (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
{stdenv, fetchFromGitHub, autoreconfHook}:

stdenv.mkDerivation rec {
  name = "jo-${version}";
  version = "1.1";

  src = fetchFromGitHub {
    owner = "jpmens";
    repo = "jo";

    rev = "v${version}";
    sha256="1gn9fa37mfb85dfjznyfgciibf142kp0gisc2l2pnz0zrakbvvy3";
  };

  enableParallelBuilding = true;

  nativeBuildInputs = [ autoreconfHook ];

  meta = with stdenv.lib; {
    description = "A small utility to create JSON objects";
    homepage = https://github.com/jpmens/jo;
    license = licenses.gpl2Plus;
    maintainers = [maintainers.markus1189];
    platforms = platforms.all;
  };
}