gnu: emacs-org-trello: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-org-trello)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-05 04:13:12 +02:00
parent 2e455d3272
commit f5f72d8d34
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 9 deletions

View File

@ -3582,15 +3582,15 @@ started with 20 minutes. All values are customizable.")
(package
(name "emacs-org-trello")
(version "0.8.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/org-trello/org-trello/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/org-trello/org-trello.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0m5hyhb6211hdmyp1bq6f3fklfgw3957knd96bfdafj727vdnlzm"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)