mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: miniasm: Don't use unstable tarball.
* gnu/packages/bioinformatics.scm (miniasm)[source]: Download using git-fetch.
This commit is contained in:
parent
b9e1fc2f04
commit
896f18210b
1 changed files with 7 additions and 7 deletions
|
@ -13410,14 +13410,14 @@ (define-public miniasm
|
||||||
(name "miniasm")
|
(name "miniasm")
|
||||||
(version "0.3")
|
(version "0.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/lh3/miniasm/archive/v"
|
(url "https://github.com/lh3/miniasm")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0g89pa98dvh34idv7w1zv12bsbyr3a11c4qb1cdcz68gyda88s4v"))))
|
"04dv5wv8bhsw1imxwyd438bnn9kby7svp44nbcz8lsadzjjci5gs"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)))
|
`(("zlib" ,zlib)))
|
||||||
|
|
Loading…
Reference in a new issue