mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: catgirl: Don't use snapshot tarball.
* gnu/packages/irc.scm (catgirl)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
753ca72fc1
commit
e09275f300
1 changed files with 9 additions and 7 deletions
|
@ -410,13 +410,15 @@ (define-public catgirl
|
|||
(package
|
||||
(name "catgirl")
|
||||
(version "2.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://git.causal.agency/catgirl/snapshot/"
|
||||
name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"13pfphcfkdzqfb4x7w21xp6rnmg3ix9f39mpqmxxzg15ys1gp2x6"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.causal.agency/catgirl")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1gxxblv3bwv1rl2ajjy791333r6qwgzb6qmk3iviw71mzi6ckxba"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests
|
||||
|
|
Loading…
Reference in a new issue