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.
This commit is contained in:
parent
6859cac498
commit
976d475a44
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue