mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: libraft: Update to 0.11.2.
* gnu/packages/cluster.scm (libraft): Update to 0.11.2. [inputs]: Add lz4. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
62180be2ee
commit
5c3f764aaf
1 changed files with 5 additions and 3 deletions
|
@ -28,6 +28,7 @@ (define-module (gnu packages cluster)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages libevent)
|
||||
|
@ -188,7 +189,7 @@ (define-public keepalived
|
|||
(define-public libraft
|
||||
(package
|
||||
(name "libraft")
|
||||
(version "0.10.1")
|
||||
(version "0.11.2")
|
||||
(home-page "https://github.com/canonical/raft")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
|
@ -197,7 +198,7 @@ (define-public libraft
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"18idj53vnl5fx1ja1zlp8kiwmdxgwjxsi88rdql0pbh0484b92a3"))))
|
||||
"050dwy34jh8dihfwfm0r1by2i3sy9crapipp9idw32idm79y4izb"))))
|
||||
(arguments '(#:configure-flags '("--enable-uv")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
@ -207,7 +208,8 @@ (define-public libraft
|
|||
((".*test_uv_append.c.*") ""))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("libuv" ,libuv)))
|
||||
`(("libuv" ,libuv)
|
||||
("lz4" ,lz4)))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
|
|
Loading…
Reference in a new issue