mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: fortune-mod: Don't use unstable tarball.
* gnu/packages/games.scm (fortune-mod)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
2f9891725d
commit
7e1d376d30
1 changed files with 10 additions and 7 deletions
|
@ -5193,13 +5193,16 @@ (define-public fortune-mod
|
||||||
(package
|
(package
|
||||||
(name "fortune-mod")
|
(name "fortune-mod")
|
||||||
(version "2.4.1")
|
(version "2.4.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/shlomif/fortune-mod/"
|
(method git-fetch)
|
||||||
"archive/" name "-" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/shlomif/fortune-mod")
|
||||||
(base32
|
(commit (string-append name "-" version))))
|
||||||
"1hnqpkassh7fwg2jgvybr8mw7vzfikbrhb5r22367ilfwxnl9yd2"))))
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ayicdqjm9vfngp89kjw778q6lnawgc08zgn5l8ld4zd7ip11s8c"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "check"
|
`(#:test-target "check"
|
||||||
|
|
Loading…
Reference in a new issue