depot/third_party/nixpkgs/pkgs/by-name/he/health-check/package.nix

44 lines
877 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
json_c,
libbsd,
}:
stdenv.mkDerivation rec {
pname = "health-check";
version = "0.04.00";
src = fetchFromGitHub {
owner = "ColinIanKing";
repo = pname;
rev = "V${version}";
hash = "sha256-CPKXpPpdagq3UnTk8Z58WtSPek8L79totKX+Uh6foVg=";
};
buildInputs = [
json_c
libbsd
];
makeFlags = [
"JSON_OUTPUT=y"
"FNOTIFY=y"
];
installFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man/man8"
"BASHDIR=${placeholder "out"}/share/bash-completion/completions"
];
meta = with lib; {
description = "Process monitoring tool";
mainProgram = "health-check";
homepage = "https://github.com/ColinIanKing/health-check";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}