gnu: emacs-memoize: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-memoize)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
86f18e4e6d
commit
54b29af03c
|
@ -6271,14 +6271,13 @@ above over the network.")
|
||||||
(version "1.1")
|
(version "1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/skeeto/emacs-memoize/archive/"
|
(url "https://github.com/skeeto/emacs-memoize.git")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "04qgnlg4x6va7x364dhj1wbjmz8p5iq2vk36mn9198k2vxmijwzk"))))
|
||||||
"05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #t
|
`(#:tests? #t
|
||||||
|
|
Loading…
Reference in New Issue