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

* gnu/packages/emacs-xyz.scm (emacs-tide)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
Brian Leung 2019-06-15 03:28:54 +02:00 committed by Nicolas Goaziou
parent ac7b33eec7
commit fe8a314271
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 6 additions and 5 deletions

View File

@ -5161,13 +5161,14 @@ indentation and filling of comments and C preprocessor fontification.")
(name "emacs-tide") (name "emacs-tide")
(version "3.2.3") (version "3.2.3")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/ananthakumaran/tide" (uri (git-reference
"/archive/v" version ".tar.gz")) (url "https://github.com/ananthakumaran/tide")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1c600myr2yqbkmy9lify38lz0zzjdqk1733db5n7vsay16vn6fzi")) "19kjq4kr2j853p5qp1s79zxmrfprli82lsnphbrlp9vbnib28xyd"))))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-dash" ,emacs-dash) `(("emacs-dash" ,emacs-dash)