2019-09-15 00:09:36 +02:00
|
|
|
{ stdenv, lib, fetchurl, json_c, libbsd }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "health-check";
|
2019-10-22 07:24:45 +02:00
|
|
|
version = "0.03.03";
|
2019-09-17 05:19:02 +02:00
|
|
|
|
2019-09-15 00:09:36 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
|
2019-10-22 07:24:45 +02:00
|
|
|
sha256 = "1bvgfzmvbqqhf1ailbwrsma6sbp5wcl6a35pb1n0y1n1p1hnqzph";
|
2019-09-15 00:09:36 +02:00
|
|
|
};
|
2019-09-17 05:19:02 +02:00
|
|
|
|
2019-09-15 00:09:36 +02:00
|
|
|
buildInputs = [ json_c libbsd ];
|
2019-09-17 05:19:02 +02:00
|
|
|
|
2019-09-15 00:09:36 +02:00
|
|
|
makeFlags = [ "JSON_OUTPUT=y" "FNOTIFY=y" ];
|
2019-09-17 05:19:02 +02:00
|
|
|
|
2019-09-15 00:09:36 +02:00
|
|
|
installFlags = [
|
|
|
|
"BINDIR=${placeholder "out"}/bin"
|
|
|
|
"MANDIR=${placeholder "out"}/share/man/man8"
|
|
|
|
];
|
2019-09-17 05:19:02 +02:00
|
|
|
|
2019-09-15 00:09:36 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|