nixpkgs/pkgs/os-specific/linux/health-check/default.nix
R. RyanTM 72628807d1 health-check: 0.03.02 -> 0.03.03
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/health-check/versions
2019-10-22 10:07:33 +02:00

29 lines
750 B
Nix

{ stdenv, lib, fetchurl, json_c, libbsd }:
stdenv.mkDerivation rec {
pname = "health-check";
version = "0.03.03";
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
sha256 = "1bvgfzmvbqqhf1ailbwrsma6sbp5wcl6a35pb1n0y1n1p1hnqzph";
};
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 ];
};
}