mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: uefitool: Don't use unstable tarball.
* gnu/packages/flashing-tools.scm (uefitool)[source]: Download using git-fetch.
This commit is contained in:
parent
db9b61bf61
commit
1f4021b03a
1 changed files with 6 additions and 5 deletions
|
@ -449,13 +449,14 @@ (define-public uefitool
|
|||
(name "uefitool")
|
||||
(version "0.22.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/LongSoft/UEFITool/archive/"
|
||||
version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/LongSoft/UEFITool.git")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32
|
||||
"05jmhv7jpq08kqbd1477y1lgyjvcic3njrd0bmzdy7v7b7lnhl82"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
"13q1lw6k4spqw7a4w392vr9c76q1l75lm08plzvj04xhcb38sgv6"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
|
Loading…
Reference in a new issue