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

* gnu/packages/emacs-xyz.scm (emacs-dashboard)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:41:00 +02:00
parent 6b746c89ac
commit d13cee982f
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -11238,14 +11238,13 @@ Emacs minor mode to escape sequences in code.")
(version "1.2.4") (version "1.2.4")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/rakanalh/emacs-dashboard/archive/" (url "https://github.com/rakanalh/emacs-dashboard.git")
version ".tar.gz")) (commit version)))
(file-name (string-append name "-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1hhh1kfsz87qfmh45wjf2r93rz79rq0vbyxlfrsl02092zjbl1zr"))))
"1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-page-break-lines" ,emacs-page-break-lines))) `(("emacs-page-break-lines" ,emacs-page-break-lines)))