diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-09-08 14:19:25 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-08 14:43:41 +0200 |
commit | befac35876712fce847fd763caf3240c54f495f9 (patch) | |
tree | b542730a5db73b6060438e91a615be9467d1b7a2 /gnu | |
parent | 45151bcb94b4ae943551ab444d8006c21f6cd69b (diff) | |
download | guix-befac35876712fce847fd763caf3240c54f495f9.tar.gz guix-befac35876712fce847fd763caf3240c54f495f9.zip |
gnu: libraft: Fetch source from Git.
* gnu/packages/cluster.scm (libraft)[source]: Switch to GIT-FETCH.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cluster.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/cluster.scm b/gnu/packages/cluster.scm index 3a81194cc5..8b99a21356 100644 --- a/gnu/packages/cluster.scm +++ b/gnu/packages/cluster.scm @@ -22,6 +22,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system gnu) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix packages) #:use-module (gnu packages autotools) #:use-module (gnu packages gettext) @@ -87,14 +88,15 @@ independently or together to provide resilient infrastructures.") (package (name "libraft") (version "0.9.5") + (home-page "https://github.com/canonical/raft") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/canonical/raft/archive/v" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0zd8nnmsszvsrwvybcg783y705z4xik9pi0mb6gb6ii58qq2b3hz")))) + "1q49f5mmv6nr6dxhnp044xwc6jlczgh0nj0bl6718wiqh28411x0")))) (arguments '(#:configure-flags '("--disable-uv"))) ;; The uv plugin tests fail, if libuv (or the example) is enabled, ;; because setting up the environment requires too much privileges. @@ -105,7 +107,6 @@ independently or together to provide resilient infrastructures.") ("libtool" ,libtool) ("pkg-config" ,pkg-config))) (build-system gnu-build-system) - (home-page "https://github.com/canonical/raft") (synopsis "C implementation of the Raft consensus protocol") (description "The library has modular design: its core part implements only the core Raft algorithm logic, in a fully platform independent way. On top of |