mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: multipath-tools: Fetch with git.
* gnu/packages/linux.scm (multipath-tools)[source]: Change to GIT-FETCH.
This commit is contained in:
parent
1f595f3cf4
commit
d1ed1d7560
1 changed files with 6 additions and 5 deletions
|
@ -4184,13 +4184,14 @@ (define-public multipath-tools
|
||||||
(name "multipath-tools")
|
(name "multipath-tools")
|
||||||
(version "0.8.3")
|
(version "0.8.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://git.opensvc.com/?p=multipath-tools/"
|
(uri (git-reference
|
||||||
".git;a=snapshot;h=" version ";sf=tgz"))
|
(url "https://git.opensvc.com/multipath-tools/.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1c6ay97wlfv1fl0y8hcfpxhkps14hlnw9gzmj7884micsp7pa9yv"))
|
"02kdbk3gv3fx5dg445scz3l4lg0sznlv037qkjgpw9xkw4l50cfd"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
|
Loading…
Reference in a new issue