gnu: emacs-helm: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-helm)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
3610a05680
commit
fb2f89b6d3
|
@ -5298,15 +5298,15 @@ ack, ag, helm and pt.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-helm")
|
(name "emacs-helm")
|
||||||
(version "3.1")
|
(version "3.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/" name "/helm/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/emacs-helm/helm.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0ymykcsbcgq2kskqc0ddigg0kfznxx3j02mkd5r3c3n8gn3kgz84"))))
|
(base32 "1x3nv8zvp8vvl30bm2d83hd7zxb0ca64pc8kwb81ml9al6r3mm01"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-async" ,emacs-async)
|
`(("emacs-async" ,emacs-async)
|
||||||
|
|
Loading…
Reference in New Issue