diff --git a/gnu/packages/glicid.scm b/gnu/packages/glicid.scm index 39683b5..f2b4c66 100644 --- a/gnu/packages/glicid.scm +++ b/gnu/packages/glicid.scm @@ -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))) + + + + ) +) +