nixpkgs/pkgs/os-specific/linux/health-check/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

33 lines
842 B
Nix

{ stdenv, lib, fetchFromGitHub, json_c, libbsd }:
stdenv.mkDerivation rec {
pname = "health-check";
version = "0.04.00";
src = fetchFromGitHub {
owner = "ColinIanKing";
repo = pname;
rev = "V${version}";
hash = "sha256-CPKXpPpdagq3UnTk8Z58WtSPek8L79totKX+Uh6foVg=";
};
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";
mainProgram = "health-check";
homepage = "https://github.com/ColinIanKing/health-check";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}