summary refs log tree commit diff
path: root/pkgs/os-specific/linux/health-check
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2021-12-20 16:04:53 +0100
committerGitHub <noreply@github.com>2021-12-20 16:04:53 +0100
commit7dcb25726b3a5ed3896fe38362f631ca5bed4a6e (patch)
treeeca0b51915045f82cdad6cf8025b44c81ea1b077 /pkgs/os-specific/linux/health-check
parente6a705413dc61807006a74b03e563c7ce91abb42 (diff)
downloadnixpkgs-7dcb25726b3a5ed3896fe38362f631ca5bed4a6e.tar
nixpkgs-7dcb25726b3a5ed3896fe38362f631ca5bed4a6e.tar.gz
nixpkgs-7dcb25726b3a5ed3896fe38362f631ca5bed4a6e.tar.bz2
nixpkgs-7dcb25726b3a5ed3896fe38362f631ca5bed4a6e.tar.lz
nixpkgs-7dcb25726b3a5ed3896fe38362f631ca5bed4a6e.tar.xz
nixpkgs-7dcb25726b3a5ed3896fe38362f631ca5bed4a6e.tar.zst
nixpkgs-7dcb25726b3a5ed3896fe38362f631ca5bed4a6e.zip
health-check: 0.03.05 -> 0.03.10
Upstream has moved
(#151325)
Diffstat (limited to 'pkgs/os-specific/linux/health-check')
-rw-r--r--pkgs/os-specific/linux/health-check/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/health-check/default.nix b/pkgs/os-specific/linux/health-check/default.nix
index 694d4565d96..e876808b461 100644
--- a/pkgs/os-specific/linux/health-check/default.nix
+++ b/pkgs/os-specific/linux/health-check/default.nix
@@ -1,12 +1,14 @@
-{ stdenv, lib, fetchurl, json_c, libbsd }:
+{ stdenv, lib, fetchFromGitHub, json_c, libbsd }:
 
 stdenv.mkDerivation rec {
   pname = "health-check";
-  version = "0.03.05";
+  version = "0.03.10";
 
-  src = fetchurl {
-    url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
-    sha256 = "1qxmkdl4pa043yg4kq5ffapm0c2cmm64h3v2c3xhnx0ad5pbhy5z";
+  src = fetchFromGitHub {
+    owner = "ColinIanKing";
+    repo = pname;
+    rev = "V${version}";
+    hash = "sha256-1dm7tl7DHv1CzuLe1/UewDSUOanO0hN+STkPrAHcZmI=";
   };
 
   buildInputs = [ json_c libbsd ];
@@ -16,11 +18,12 @@ stdenv.mkDerivation rec {
   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";
-    homepage = "https://kernel.ubuntu.com/~cking/health-check/";
+    homepage = "https://github.com/ColinIanKing/health-check";
     license = licenses.gpl2;
     platforms = platforms.linux;
     maintainers = with maintainers; [ dtzWill ];