gnu: emacs-helpful: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-helpful)[source]: Use GIT-FETCH and GIT-FILE-NAME.master
parent
f0d3638738
commit
bb926860bf
|
@ -10485,15 +10485,15 @@ downloading manager for Emacs.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-helpful")
|
(name "emacs-helpful")
|
||||||
(version "0.15")
|
(version "0.15")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/Wilfred/helpful/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/Wilfred/helpful.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"1xmvhphzb4hbg647dz4lafy6hd19b7bk3lxni6irqrzdsrclhzn6"))))
|
(base32 "1rqnx7672175288yqaslw0d9vw04j6psw7mys8j9zcp2i72hlvkn"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-elisp-refs" ,emacs-elisp-refs)))
|
`(("emacs-elisp-refs" ,emacs-elisp-refs)))
|
||||||
|
|
Reference in New Issue