mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: Add watchdogd.
* gnu/packages/linux.scm (watchdogd): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
00cf011a83
commit
18576c4db4
1 changed files with 24 additions and 0 deletions
|
@ -141,6 +141,7 @@ (define-module (gnu packages linux)
|
||||||
#:use-module (gnu packages slang)
|
#:use-module (gnu packages slang)
|
||||||
#:use-module (gnu packages sqlite)
|
#:use-module (gnu packages sqlite)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
|
#:use-module (gnu packages textutils)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages valgrind)
|
#:use-module (gnu packages valgrind)
|
||||||
#:use-module (gnu packages video)
|
#:use-module (gnu packages video)
|
||||||
|
@ -4123,6 +4124,29 @@ (define-public thin-provisioning-tools
|
||||||
(home-page "https://github.com/jthornber/thin-provisioning-tools")
|
(home-page "https://github.com/jthornber/thin-provisioning-tools")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public watchdogd
|
||||||
|
(package
|
||||||
|
(name "watchdogd")
|
||||||
|
(version "3.5")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/troglobit/watchdogd")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"05f7igavzimfgbh39fflbkmpya12r854n03dkyimwashcqwchx8f"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs (list autoconf automake libtool pkg-config))
|
||||||
|
(inputs (list libconfuse libite libuev))
|
||||||
|
(synopsis "Advanced system & process supervisor for Linux")
|
||||||
|
(description "This package provides an advanced monitor of critical system
|
||||||
|
resources, supervises the heartbeat of processes, records deadline
|
||||||
|
transgressions, and initiates a controlled reset if needed")
|
||||||
|
(home-page "https://troglobit.com/projects/watchdogd/")
|
||||||
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public wireless-tools
|
(define-public wireless-tools
|
||||||
(package
|
(package
|
||||||
(name "wireless-tools")
|
(name "wireless-tools")
|
||||||
|
|
Loading…
Reference in a new issue