depot/pkgs/development/tools/jo/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

26 lines
649 B
Nix

{lib, stdenv, fetchFromGitHub, autoreconfHook, pandoc, pkg-config}:
stdenv.mkDerivation rec {
pname = "jo";
version = "1.9";
src = fetchFromGitHub {
owner = "jpmens";
repo = "jo";
rev = version;
sha256 ="sha256-1q4/RpxfoAdtY3m8bBuj7bhD17V+4dYo3Vb8zMbI1YU=";
};
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook pandoc pkg-config ];
meta = with lib; {
description = "Small utility to create JSON objects";
homepage = "https://github.com/jpmens/jo";
mainProgram = "jo";
license = licenses.gpl2Plus;
maintainers = [maintainers.markus1189];
platforms = platforms.all;
};
}