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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
627 B
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, autoreconfHook, pandoc, pkg-config}:
2016-03-11 12:37:23 +01:00
stdenv.mkDerivation rec {
pname = "jo";
2022-01-11 16:05:13 +01:00
version = "1.6";
2016-03-11 12:37:23 +01:00
src = fetchFromGitHub {
owner = "jpmens";
2016-03-11 12:37:23 +01:00
repo = "jo";
rev = version;
2022-01-11 16:05:13 +01:00
sha256 ="sha256-aATCeJV0x+XHOQbwulutxivPzGVQ0mJj90vA+6IM124=";
2016-03-11 12:37:23 +01:00
};
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook pandoc pkg-config ];
2016-03-11 12:37:23 +01:00
meta = with lib; {
2016-03-11 12:37:23 +01:00
description = "A small utility to create JSON objects";
homepage = "https://github.com/jpmens/jo";
2016-03-11 12:37:23 +01:00
license = licenses.gpl2Plus;
maintainers = [maintainers.markus1189];
platforms = platforms.all;
};
}