gnu: hlint: Update to 2.1.

* gnu/packages/haskell.scm (hlint): Update to 2.1.
[inputs]: Add ghc-unordered-containers, ghc-yaml, ghc-vector, ghc-text,
ghc-data-default, ghc-haskell-src-exts-util, ghc-refact, and ghc-aeson.
This commit is contained in:
Ricardo Wurmus 2018-02-12 22:24:10 +01:00
parent e1358124aa
commit 780185cca3
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1075,7 +1075,7 @@ (define-public ghc-refact
(define-public hlint
(package
(name "hlint")
(version "1.9.37")
(version "2.1")
(source
(origin
(method url-fetch)
@ -1084,15 +1084,23 @@ (define-public hlint
"/" name "-" version ".tar.gz"))
(sha256
(base32
"05f4i06fz99bwpm311mkdwqdl67918v4rgabdafian3vhdm4c252"))))
"13chm0dhh1fn2iy3flnh7ahc3yzh8q0v10qxwd1739sywhykayg9"))))
(build-system haskell-build-system)
(inputs
`(("cpphs" ,cpphs)
("ghc-unordered-containers" ,ghc-unordered-containers)
("ghc-yaml" ,ghc-yaml)
("ghc-vector" ,ghc-vector)
("ghc-text" ,ghc-text)
("ghc-data-default" ,ghc-data-default)
("ghc-cmdargs" ,ghc-cmdargs)
("ghc-haskell-src-exts" ,ghc-haskell-src-exts)
("ghc-haskell-src-exts-util" ,ghc-haskell-src-exts-util)
("ghc-uniplate" ,ghc-uniplate)
("ghc-ansi-terminal" ,ghc-ansi-terminal)
("ghc-extra" ,ghc-extra)
("ghc-refact" ,ghc-refact)
("ghc-aeson" ,ghc-aeson)
("hscolour" ,hscolour)))
(home-page "http://community.haskell.org/~ndm/hlint/")
(synopsis "Suggest improvements for Haskell source code")