gnu: emacs-multiple-cursors: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-multiple-cursors)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-04 20:25:31 +02:00
parent 6859cac498
commit 976d475a44
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -2965,13 +2965,13 @@ completion candidate when using the Company text completion framework.")
(version "1.4.0") (version "1.4.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/magnars/multiple-cursors.el/" (uri (git-reference
"archive/" version ".tar.gz")) (url "https://github.com/magnars/multiple-cursors.el.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1ijgvzv5r44xqvz751fd5drbvrspapw6xwv47582w255j363r6ss"))))
"0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/magnars/multiple-cursors.el") (home-page "https://github.com/magnars/multiple-cursors.el")
(synopsis "Multiple cursors for Emacs") (synopsis "Multiple cursors for Emacs")