gnu: emacs-flycheck: Use the upstream release instead of MELPA.
* gnu/packages/emacs.scm (flycheck): Change version to 0.23. Replace MELPA tarball with the upstream release.
This commit is contained in:
parent
d1f80aa401
commit
0b928076c7
|
@ -537,14 +537,15 @@ the body are let-bound and this search is done at compile time.")
|
||||||
(define-public flycheck
|
(define-public flycheck
|
||||||
(package
|
(package
|
||||||
(name "emacs-flycheck")
|
(name "emacs-flycheck")
|
||||||
(version "20150831.1343")
|
(version "0.23")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://melpa.org/packages/flycheck-"
|
(uri (string-append
|
||||||
version ".tar"))
|
"https://github.com/flycheck/flycheck/releases/download/"
|
||||||
|
version "/flycheck-" version ".tar"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0a0iyvki62rqi24dbrcdq3i1wdygdi350gcjsfrfr6fz8fasz42l"))))
|
"1n2cifzsl5dbv42l82bi3y1vk6q33msi8dd4bj7b9nvnl9jfjj5b"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-dash" ,emacs-dash)
|
`(("emacs-dash" ,emacs-dash)
|
||||||
|
|
Loading…
Reference in New Issue