gnu: emacs-helm-mode-manager: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-helm-mode-manager)[source]: Download
using git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-26 20:53:34 +02:00
parent b8e4626542
commit b495fbfad9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -13365,13 +13365,14 @@ (define-public emacs-helm-mode-manager
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/istib/helm-mode-manager/"
"archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/istib/helm-mode-manager")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
"1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-helm" ,emacs-helm)))