watchdogd: init at 4.0
This commit is contained in:
parent
34524fed9b
commit
13203a7216
1 changed files with 32 additions and 0 deletions
32
pkgs/by-name/wa/watchdogd/package.nix
Normal file
32
pkgs/by-name/wa/watchdogd/package.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, autoreconfHook
|
||||
, libite
|
||||
, libuev
|
||||
, libconfuse
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "watchdogd";
|
||||
version = "4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "troglobit";
|
||||
repo = "watchdogd";
|
||||
rev = version;
|
||||
hash = "sha256-JNJj0CJGJXuIRpob2RXYqDRrU4Cn20PRxOjQ6TFsVYQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
buildInputs = [ libite libuev libconfuse ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Advanced system & process supervisor for Linux";
|
||||
homepage = "https://troglobit.com/watchdogd.html";
|
||||
changelog = "https://github.com/troglobit/watchdogd/releases/tag/${version}";
|
||||
license = licenses.isc;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ vifino ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue