From 3ba36885524e6a283b75b3ae57b20be1ef23d8e3 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sat, 14 Sep 2019 17:09:36 -0500 Subject: [PATCH 1/2] health-check: init at 0.03.02 --- .../linux/health-check/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/os-specific/linux/health-check/default.nix diff --git a/pkgs/os-specific/linux/health-check/default.nix b/pkgs/os-specific/linux/health-check/default.nix new file mode 100644 index 000000000000..e76d77a44485 --- /dev/null +++ b/pkgs/os-specific/linux/health-check/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7668880edbf2..8212da7c66c5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15532,6 +15532,8 @@ in hdparm = callPackage ../os-specific/linux/hdparm { }; + health-check = callPackage ../os-specific/linux/health-check { }; + hibernate = callPackage ../os-specific/linux/hibernate { }; hostapd = callPackage ../os-specific/linux/hostapd { }; From 93818840793620b11d73f9eac0ab29bea8154caa Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 16 Sep 2019 22:19:02 -0500 Subject: [PATCH 2/2] health-check: whitespace between attributes --- pkgs/os-specific/linux/health-check/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/os-specific/linux/health-check/default.nix b/pkgs/os-specific/linux/health-check/default.nix index e76d77a44485..c90029907c0b 100644 --- a/pkgs/os-specific/linux/health-check/default.nix +++ b/pkgs/os-specific/linux/health-check/default.nix @@ -3,16 +3,21 @@ 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/";