mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: cowsay: Don't use unstable tarball.
* gnu/packages/games.scm (cowsay)[source]: Download using git-fetch.
This commit is contained in:
parent
caa1f6a8ae
commit
7afb97fdb5
1 changed files with 6 additions and 5 deletions
|
@ -463,13 +463,14 @@ (define-public cowsay
|
||||||
(name "cowsay")
|
(name "cowsay")
|
||||||
(version "3.04")
|
(version "3.04")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/tnalpgge/"
|
(uri (git-reference
|
||||||
"rank-amateur-cowsay/archive/"
|
(url "https://github.com/tnalpgge/rank-amateur-cowsay.git")
|
||||||
"cowsay-" version ".tar.gz"))
|
(commit (string-append name "-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12w7apbf6a9qffk92r32b16w22na2fjcqbl32rn0n7zw5hrp3f6q"))))
|
"06455kq37hvq1xb7adyiwrx0djs50arsxvjgixyxks16lm1rlc7n"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in a new issue