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

* gnu/packages/emacs-xyz.scm (emacs-f3)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-08 23:39:34 +02:00
parent 8d7f5c55a7
commit 0f5f9eacf4
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -10654,13 +10654,13 @@ buffer with each of your todos.")
(version "0.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/cosmicexplorer/f3/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/cosmicexplorer/f3.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"06b8i1jvklm5k3k90n65f197l1miq1xlxqkqpbppw4h3rhl4y98h"))))
(base32 "1qg48zbjdjqimw4516ymrsilz41zkib9321q0caf9474s9xyp2bi"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-helm" ,emacs-helm)))