gnu: emacs-haskell-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-haskell-mode)[source]: Use 'git-fetch'.
This commit is contained in:
parent
0c662875b9
commit
f5350a07dc
|
@ -535,13 +535,13 @@ for editing Racket's Scribble documentation syntax in Emacs.")
|
||||||
(name "emacs-haskell-mode")
|
(name "emacs-haskell-mode")
|
||||||
(version "16.1")
|
(version "16.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(uri (string-append
|
(url "https://github.com/haskell/haskell-mode")
|
||||||
"https://github.com/haskell/haskell-mode/archive/v"
|
(commit (string-append "v" version))))
|
||||||
version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))
|
(base32 "1qk36y0v9fzass6785il65c6wb5cfj4ihhwkvgnzmbafpa8p4dvq"))
|
||||||
(patches
|
(patches
|
||||||
(search-patches ; backport test failure fixes
|
(search-patches ; backport test failure fixes
|
||||||
"haskell-mode-unused-variables.patch"
|
"haskell-mode-unused-variables.patch"
|
||||||
|
|
Loading…
Reference in New Issue