gnu: miniasm: Don't use unstable tarball.

* gnu/packages/bioinformatics.scm (miniasm)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2020-06-23 16:04:04 +03:00
parent b9e1fc2f04
commit 896f18210b
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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)))