mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 02:50:20 +01:00
gnu: findnewest: Don't use unstable tarball.
* gnu/packages/version-control.scm (findnewest)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
6a8472d1d9
commit
395ee951c0
1 changed files with 9 additions and 8 deletions
|
@ -1763,14 +1763,15 @@ output of the @code{git} command.")
|
||||||
(package
|
(package
|
||||||
(name "findnewest")
|
(name "findnewest")
|
||||||
(version "0.3")
|
(version "0.3")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/0-wiz-0/findnewest/archive/findnewest-"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/0-wiz-0/findnewest.git")
|
||||||
|
(commit (string-append "findnewest-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1x1cbn2b27h5r0ah5xc06fkalfdci2ngrgd4wibxjw0h88h0nvgq"))))
|
||||||
"1ydis4y0amkgfr4y60sn076f1l41ya2kn89kfd9fqf44f9ccgb5r"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs `(("autoconf" ,autoconf)
|
(native-inputs `(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)))
|
("automake" ,automake)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue