gnu: emacs-haskell-mode: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-haskell-mode)[source]: Use 'git-fetch'.
master
Efraim Flashner 2019-01-23 10:35:29 +02:00
parent 0c662875b9
commit f5350a07dc
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 6 deletions

View File

@ -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"