gnu: shellcheck: Update to 0.7.0.

* gnu/packages/haskell.scm (shellcheck): Update to 0.7.0.
[inputs]: Add ghc-diff.
This commit is contained in:
Tobias Geerinckx-Rice 2019-08-22 15:16:58 +02:00
parent 29b60130d8
commit 76eb007990
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -8361,7 +8361,7 @@ (define-public ghc-esqueleto
(define-public shellcheck
(package
(name "shellcheck")
(version "0.5.0")
(version "0.7.0")
(source
(origin
(method url-fetch)
@ -8369,12 +8369,12 @@ (define-public shellcheck
"https://hackage.haskell.org/package/ShellCheck/ShellCheck-"
version ".tar.gz"))
(sha256
(base32
"0z1hscbr11hwkq8k1v0vaa947hb9m6k4cm831jk1gpj8dxrk151b"))
(base32 "1vx895cp5k5h0680xfwj74lk97m9y627n965x6srds0gfnbkzy9s"))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system haskell-build-system)
(inputs
`(("ghc-aeson" ,ghc-aeson)
("ghc-diff" ,ghc-diff)
("ghc-quickcheck" ,ghc-quickcheck)
("ghc-regex-tdfa" ,ghc-regex-tdfa)))
(home-page "https://github.com/koalaman/shellcheck")