nixpkgs/pkgs/development/tools/jo/default.nix

26 lines
626 B
Nix
Raw Normal View History

2019-11-06 17:33:02 +00:00
{stdenv, fetchFromGitHub, autoreconfHook, pandoc, pkgconfig}:
2016-03-11 11:37:23 +00:00
stdenv.mkDerivation rec {
pname = "jo";
2019-11-06 17:33:02 +00:00
version = "1.3";
2016-03-11 11:37:23 +00:00
src = fetchFromGitHub {
owner = "jpmens";
2016-03-11 11:37:23 +00:00
repo = "jo";
rev = version;
2019-11-06 17:33:02 +00:00
sha256 ="11miqg0i83drwkn66b4333vhfdw62al11dyfgp30alg6pcab3icl";
2016-03-11 11:37:23 +00:00
};
enableParallelBuilding = true;
2019-11-06 17:33:02 +00:00
nativeBuildInputs = [ autoreconfHook pandoc pkgconfig ];
2016-03-11 11:37:23 +00:00
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;
};
}