jo: init at 1.0

This commit is contained in:
Markus Hauck 2016-03-11 12:37:23 +01:00
parent c97c667610
commit 7b09191563
2 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -2138,7 +2138,9 @@ let
jpegoptim = callPackage ../applications/graphics/jpegoptim { };
jq = callPackage ../development/tools/jq {};
jq = callPackage ../development/tools/jq { };
jo = callPackage ../development/tools/jo { };
jscoverage = callPackage ../development/tools/misc/jscoverage { };