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.
This commit is contained in:
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 (package
(name "emacs-org-trello") (name "emacs-org-trello")
(version "0.8.0") (version "0.8.0")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/org-trello/org-trello/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/org-trello/org-trello.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0")))) (base32 "0m5hyhb6211hdmyp1bq6f3fklfgw3957knd96bfdafj727vdnlzm"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-dash" ,emacs-dash) `(("emacs-dash" ,emacs-dash)