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/os-specific/linux/health-check/default.nix

31 lines
808 B

{ stdenv, lib, fetchFromGitHub, json_c, libbsd }:
stdenv.mkDerivation rec {
pname = "health-check";
version = "0.03.10";
src = fetchFromGitHub {
owner = "ColinIanKing";
repo = pname;
rev = "V${version}";
hash = "sha256-1dm7tl7DHv1CzuLe1/UewDSUOanO0hN+STkPrAHcZmI=";
};
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 ];
};
}