gnu: emacs-visual-regexp: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-visual-regexp)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:40:05 +02:00
parent 149829ee62
commit 8792f08b09
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -10866,13 +10866,13 @@ decreasing the default font size in all GUI Emacs frames.")
(version "1.1.1") (version "1.1.1")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/benma/visual-regexp.el/archive/" (uri (git-reference
"v" version ".tar.gz")) (url "https://github.com/benma/visual-regexp.el.git")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "12zpmzwyp85dzsjpxd3279kpfi9yz3jwc1k9fnb3xv3pjiil5svg"))))
"1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/benma/visual-regexp.el/") (home-page "https://github.com/benma/visual-regexp.el/")
(synopsis "Regexp command with interactive visual feedback") (synopsis "Regexp command with interactive visual feedback")