gnu: emacs-popup: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-popup)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
11df832143
commit
f2e3d0a947
|
@ -3290,15 +3290,15 @@ for compilation, debugging, documentation lookup, and so on.")
|
||||||
(package
|
(package
|
||||||
(name "emacs-popup")
|
(name "emacs-popup")
|
||||||
(version "0.5.3")
|
(version "0.5.3")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/auto-complete/popup-el/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/auto-complete/popup-el.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
|
(base32 "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/auto-complete/popup-el")
|
(home-page "https://github.com/auto-complete/popup-el")
|
||||||
(synopsis "Visual Popup User Interface for Emacs")
|
(synopsis "Visual Popup User Interface for Emacs")
|
||||||
|
|
Loading…
Reference in New Issue