mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
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:
parent
cb4baa4da6
commit
bd0570f21d
1 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue