health-check: 0.03.05 -> 0.03.10

Upstream has moved
(#151325)
main
Renaud 3 years ago committed by GitHub
parent e6a705413d
commit 7dcb25726b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      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 ];

Loading…
Cancel
Save