gnu: emacs-flx: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-flx)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-26 20:41:03 +02:00
parent 25f6b444b0
commit d1de1ab21a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -8035,13 +8035,14 @@ (define-public emacs-flx
(version "0.6.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/lewang/"
"flx/archive/v" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/lewang/flx.git")
(commit (string-append "v" version))))
(sha256
(base32
"0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
(file-name (string-append name "-" version ".tar.gz"))))
"0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(home-page "https://github.com/lewang/flx")
(synopsis "Fuzzy matching for Emacs")