nixpkgs/pkgs/development/tools/jo/default.nix
2016-03-11 19:33:13 +01:00

27 lines
605 B
Nix

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