Archived
1
0
Fork 0

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:
Efraim Flashner 2019-11-26 20:44:58 +02:00
parent 0dcb8e83f4
commit ed1ff94fe2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -8135,13 +8135,14 @@ by zenburn, sinburn and similar themes, but slowly diverging from them.")
(version "1.5.1") (version "1.5.1")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/auto-complete/" (uri (git-reference
"auto-complete/archive/v" version ".tar.gz")) (url "https://github.com/auto-complete/auto-complete.git")
(commit (string-append "v" version))))
(sha256 (sha256
(base32 (base32
"1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv")) "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb"))
(file-name (string-append name "-" version ".tar.gz")))) (file-name (git-file-name name version))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-popup" ,emacs-popup))) `(("emacs-popup" ,emacs-popup)))