health-check: init at 0.03.02
This commit is contained in:
parent
2ff3620d0d
commit
3ba3688552
23
pkgs/os-specific/linux/health-check/default.nix
Normal file
23
pkgs/os-specific/linux/health-check/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, lib, fetchurl, json_c, libbsd }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "health-check";
|
||||||
|
version = "0.03.02";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
|
||||||
|
sha256 = "12n2qp5lrlahkgrkwy3mjm0nscz6yhhh80z4xmd2n96pn8f3d4hh";
|
||||||
|
};
|
||||||
|
buildInputs = [ json_c libbsd ];
|
||||||
|
makeFlags = [ "JSON_OUTPUT=y" "FNOTIFY=y" ];
|
||||||
|
installFlags = [
|
||||||
|
"BINDIR=${placeholder "out"}/bin"
|
||||||
|
"MANDIR=${placeholder "out"}/share/man/man8"
|
||||||
|
];
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -15532,6 +15532,8 @@ in
|
|||||||
|
|
||||||
hdparm = callPackage ../os-specific/linux/hdparm { };
|
hdparm = callPackage ../os-specific/linux/hdparm { };
|
||||||
|
|
||||||
|
health-check = callPackage ../os-specific/linux/health-check { };
|
||||||
|
|
||||||
hibernate = callPackage ../os-specific/linux/hibernate { };
|
hibernate = callPackage ../os-specific/linux/hibernate { };
|
||||||
|
|
||||||
hostapd = callPackage ../os-specific/linux/hostapd { };
|
hostapd = callPackage ../os-specific/linux/hostapd { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user