mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: emacs-auto-complete: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-auto-complete)[source]: Download using git-fetch.
This commit is contained in:
parent
0dcb8e83f4
commit
ed1ff94fe2
1 changed files with 6 additions and 5 deletions
|
@ -8135,13 +8135,14 @@ (define-public emacs-auto-complete
|
|||
(version "1.5.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/auto-complete/"
|
||||
"auto-complete/archive/v" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/auto-complete/auto-complete.git")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
"04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-popup" ,emacs-popup)))
|
||||
|
|
Loading…
Reference in a new issue