about summary refs log tree commit diff
path: root/pkgs/development/tools/jo/default.nix
blob: 09b5edeeecdfa49e0bcd91fda5f9b4620999a4c5 (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.0";

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

    rev = "v${version}";
    sha256="0vyi0aaxsp6x3cvym7mlcfdsxjhj5h0b00mqc42mg8kc95cyp2c1";
  };

  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;
  };
}