mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-03 15:43:06 +02:00
reformatting and cleaning repo
This commit is contained in:
parent
263fc568f0
commit
dd9a55f327
42 changed files with 10407 additions and 11840 deletions
|
@ -1,39 +1,31 @@
|
|||
(define-module (glicid packages cluster)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (gnu packages networking)
|
||||
#:use-module ((gnu packages cluster)
|
||||
#:prefix gnu:)
|
||||
#:use-module (glicid utils))
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (gnu packages networking)
|
||||
#:use-module ((gnu packages cluster)
|
||||
#:prefix gnu:)
|
||||
#:use-module (glicid utils))
|
||||
|
||||
(define-public keepalived-upstream-2.2.8
|
||||
(package
|
||||
(inherit gnu:keepalived)
|
||||
(name "keepalived-upstream")
|
||||
(version "2.2.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://www.keepalived.org/software/keepalived-" version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1dhvg9x976k4nnygxyv2gr55jfd88459kgiiqva9bwvl56v2x245"))))))
|
||||
(package
|
||||
(inherit gnu:keepalived)
|
||||
(name "keepalived-upstream")
|
||||
(version "2.2.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.keepalived.org/software/keepalived-" version ".tar.gz"))
|
||||
(sha256 (base32 "1dhvg9x976k4nnygxyv2gr55jfd88459kgiiqva9bwvl56v2x245"))))))
|
||||
|
||||
|
||||
(define-public keepalived-upstream-2.3.1
|
||||
(package
|
||||
(inherit gnu:keepalived)
|
||||
(name "keepalived-upstream")
|
||||
(version "2.3.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://www.keepalived.org/software/keepalived-" version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"18raqq15xxf5hlrqhk39prq9xdfiv9px2nlrs43273lrzndvdx4j"))))))
|
||||
(package
|
||||
(inherit gnu:keepalived)
|
||||
(name "keepalived-upstream")
|
||||
(version "2.3.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.keepalived.org/software/keepalived-" version ".tar.gz"))
|
||||
(sha256 (base32 "18raqq15xxf5hlrqhk39prq9xdfiv9px2nlrs43273lrzndvdx4j"))))))
|
||||
|
||||
|
||||
(define local:keepalived
|
||||
|
@ -42,13 +34,13 @@
|
|||
(latest-version local:keepalived gnu:keepalived))
|
||||
|
||||
(define-public keepalived-glicid
|
||||
(package
|
||||
(inherit keepalived-latest)
|
||||
(name "keepalived-glicid")
|
||||
(version (string-append (package-version keepalived-latest) "-glicid"))
|
||||
(arguments
|
||||
`(#:configure-flags (list (string-append "--enable-snmp")
|
||||
(string-append "--enable-snmp-checker")
|
||||
(string-append "--enable-snmp-rfc"))))
|
||||
(inputs (modify-inputs (package-inputs keepalived-latest)
|
||||
(prepend net-snmp)))))
|
||||
(package
|
||||
(inherit keepalived-latest)
|
||||
(name "keepalived-glicid")
|
||||
(version (string-append (package-version keepalived-latest) "-glicid"))
|
||||
(arguments
|
||||
`(#:configure-flags (list (string-append "--enable-snmp")
|
||||
(string-append "--enable-snmp-checker")
|
||||
(string-append "--enable-snmp-rfc"))))
|
||||
(inputs (modify-inputs (package-inputs keepalived-latest)
|
||||
(prepend net-snmp)))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue