mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -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")
|
||||
(version "3.04")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/tnalpgge/"
|
||||
"rank-amateur-cowsay/archive/"
|
||||
"cowsay-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tnalpgge/rank-amateur-cowsay.git")
|
||||
(commit (string-append name "-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"12w7apbf6a9qffk92r32b16w22na2fjcqbl32rn0n7zw5hrp3f6q"))))
|
||||
"06455kq37hvq1xb7adyiwrx0djs50arsxvjgixyxks16lm1rlc7n"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
|
Loading…
Reference in a new issue