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

* gnu/packages/emacs-xyz.scm (emacs-sourcemap)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:37:26 +02:00
parent 006a1da8a6
commit 339eef40f8
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79

View File

@ -9909,13 +9909,13 @@ your Emacs.")
(version "0.03") (version "0.03")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/syohex/emacs-sourcemap.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "115g2mfpbfywp8xnag4gsb50klfvplqfh928a5mabb5s8v4a3582"))))
"0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/syohex/emacs-sourcemap") (home-page "https://github.com/syohex/emacs-sourcemap")
(synopsis "Sourcemap parser") (synopsis "Sourcemap parser")