nixpkgs/pkgs/os-specific/linux/health-check/default.nix
2024-01-20 09:31:57 +00:00

32 lines
808 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";
homepage = "https://github.com/ColinIanKing/health-check";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}