gnu: emacs-elfeed: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-elfeed)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
2d965d82ed
commit
bde24d5e40
|
@ -4822,14 +4822,15 @@ If you want to mark a folder manually as a project just create an empty
|
||||||
(package
|
(package
|
||||||
(name "emacs-elfeed")
|
(name "emacs-elfeed")
|
||||||
(version "3.0.0")
|
(version "3.0.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/skeeto/elfeed/archive/"
|
(method git-fetch)
|
||||||
version ".tar.gz"))
|
(uri (git-reference
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(url "https://github.com/skeeto/elfeed.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "01x4ww63lvn04c7f3ab5vx2s20xqisvv8213qwswz7vr9nxja5yi"))))
|
||||||
"1wkdrxr6zzqb48czqqv34l87bx8aqjk1739ddqg933aqh241kfvn"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #t
|
`(#:tests? #t
|
||||||
|
|
Loading…
Reference in New Issue