watchdogd: init at 4.0

This commit is contained in:
Adrian Pistol 2023-10-31 09:46:49 +01:00
parent 34524fed9b
commit 13203a7216

View 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 ];
};
}