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

* gnu/packages/emacs.scm (emacs-f)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2018-08-20 13:06:59 +02:00
parent cb4baa4da6
commit bd0570f21d
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1878,14 +1878,14 @@ (define-public emacs-f
(name "emacs-f") (name "emacs-f")
(version "0.19.0") (version "0.19.0")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/rejeep/f.el/archive/v" (url "https://github.com/rejeep/f.el.git")
version ".tar.gz")) (commit (string-append "v" version))))
(file-name (string-append name "-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"05195n80ywa68qykxn7dza6qd59rhakvlzhaa9l6mcpmjf9l9grs")))) "1j6gc2pp5w3iwyjm4h3d0ahzs0ac3pah8lzfhpg4nkibl0nc1bcg"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-s" ,emacs-s) `(("emacs-s" ,emacs-s)