My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/jo/default.nix

25 lines
627 B

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