nixpkgs/pkgs/os-specific/linux/health-check/default.nix

29 lines
750 B
Nix
Raw Normal View History

2019-09-14 23:09:36 +01:00
{ stdenv, lib, fetchurl, json_c, libbsd }:
stdenv.mkDerivation rec {
pname = "health-check";
2019-12-23 13:01:27 +00:00
version = "0.03.04";
2019-09-14 23:09:36 +01:00
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
2019-12-23 13:01:27 +00:00
sha256 = "0p85ai31n9hh6d4b79zzlczf9arsy7vmkjak1x3g9f5qj8fy4avp";
2019-09-14 23:09:36 +01:00
};
2019-09-14 23:09:36 +01:00
buildInputs = [ json_c libbsd ];
2019-09-14 23:09:36 +01:00
makeFlags = [ "JSON_OUTPUT=y" "FNOTIFY=y" ];
2019-09-14 23:09:36 +01:00
installFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man/man8"
];
2019-09-14 23:09:36 +01:00
meta = with lib; {
description = "Process monitoring tool";
homepage = "https://kernel.ubuntu.com/~cking/health-check/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}