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

* gnu/packages/emacs-xyz.scm (emacs-tagedit)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-04 20:41:51 +02:00
parent fd0ec422e0
commit 60306e4517
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -3206,13 +3206,13 @@ constants and units into an Emacs buffer.")
(version "1.4.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/magnars/tagedit/"
"archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/magnars/tagedit.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
(base32 "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-s" ,emacs-s)