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

* gnu/packages/emacs-xyz.scm (emacs-deft)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
Brian Leung 2019-10-09 19:36:22 +02:00
parent dc6a1a8b48
commit dc3cd70d20
No known key found for this signature in database
GPG Key ID: 3ADC75F013D678F9
1 changed files with 5 additions and 4 deletions

View File

@ -11014,12 +11014,13 @@ to with quicklink-style selections.")
(version "0.8")
(source
(origin
(method url-fetch)
(uri (string-append "https://stable.melpa.org/packages/deft-"
version ".el"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/jrblevin/deft.git")
(commit (string-append "v" version))))
(sha256
(base32
"1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
"0z7cilgiz6krvl5h2z72hkch43qxmypb0k6p5vxn5lx1p6v0mrf2"))))
(build-system emacs-build-system)
(home-page "https://jblevins.org/projects/deft/")
(synopsis "Quickly browse, filter, and edit plain text notes")