gnu: emacs-async: Download using git.
The MELPA tarball hash changed. Prevent this problem in the future by downloading a git checkout. * gnu/packages/emacs.scm (emacs-async)[home-page]: Update to actual. [source]: Use GIT-FETCH.master
parent
a0a2c2f16a
commit
3c3c3d1d92
|
@ -1179,16 +1179,18 @@ rather than the contents of files.")
|
||||||
(define-public emacs-async
|
(define-public emacs-async
|
||||||
(package
|
(package
|
||||||
(name "emacs-async")
|
(name "emacs-async")
|
||||||
|
(home-page "https://github.com/jwiegley/emacs-async")
|
||||||
(version "1.9.3")
|
(version "1.9.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://stable.melpa.org/packages/async-"
|
(uri (git-reference
|
||||||
version ".tar"))
|
(url home-page)
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0xvi50y96y2qh81qkhj8p6ar1xnfasg58qvlsvgvvmdf4g8srlij"))))
|
"1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://elpa.gnu.org/packages/async.html")
|
|
||||||
(synopsis "Asynchronous processing in Emacs")
|
(synopsis "Asynchronous processing in Emacs")
|
||||||
(description
|
(description
|
||||||
"This package provides the ability to call asynchronous functions and
|
"This package provides the ability to call asynchronous functions and
|
||||||
|
|
Reference in New Issue