mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
add new keepalived version
This commit is contained in:
parent
5cc0109030
commit
9577ca883a
1 changed files with 34 additions and 4 deletions
|
@ -90,16 +90,13 @@
|
|||
;; #:use-module (gnu packages glicid)
|
||||
#:use-module (gnu packages pretty-print)
|
||||
#:use-module (gnu packages virtualization)
|
||||
#:use-module (glicid packages storage)
|
||||
#:use-module (glicid packages mpi)
|
||||
#:use-module (glicid packages gcc)
|
||||
|
||||
)
|
||||
|
||||
|
||||
;;;;;;;;
|
||||
|
||||
(define-public glicid-keepalived
|
||||
(define-public glicid-keepalived-2.1.5
|
||||
(package
|
||||
(inherit keepalived)
|
||||
(name "glicid-keepalived")
|
||||
|
@ -133,6 +130,39 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-public glicid-keepalived-2.2.4
|
||||
(package
|
||||
(inherit keepalived)
|
||||
(name "glicid-keepalived")
|
||||
(version "2.2.4")
|
||||
(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)))
|
||||
|
||||
|
||||
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
;;; glicid/cluster.scm ends here
|
||||
|
|
Loading…
Add table
Reference in a new issue