mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
ajout glicid-keepalived
This commit is contained in:
parent
2502b9f0fa
commit
9bf3718c38
1 changed files with 35 additions and 0 deletions
|
@ -43,6 +43,7 @@
|
|||
#:use-module (gnu packages messaging)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages gnome)
|
||||
#:use-module (gnu packages cluster)
|
||||
#:use-module (gnu packages libevent))
|
||||
|
||||
(define-public glicid-pmix
|
||||
|
@ -537,6 +538,40 @@
|
|||
)
|
||||
|
||||
|
||||
(define-public glicid-keepalived
|
||||
(package
|
||||
(inherit keepalived)
|
||||
(name "glicid-keepalived")
|
||||
(version "2.1.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://www.keepalived.org/software/keepalived-"
|
||||
version ".tar.gz"))
|
||||
|
||||
(sha256
|
||||
(base32
|
||||
"0n92fdlmm251scq2j7w1nqwly8jsla4sxrd0jnfb6nn9qp5pqkfr"))))
|
||||
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list (string-append "--enable-snmp")
|
||||
(string-append "--enable-snmp-checker")
|
||||
(string-append "--enable-snmp-rfc")
|
||||
)
|
||||
)
|
||||
|
||||
)
|
||||
|
||||
|
||||
(inputs `(("net-snmp", net-snmp)
|
||||
,@(package-inputs keepalived)))
|
||||
|
||||
|
||||
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue