diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-08-15 11:21:28 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-08-16 17:04:11 +0200 |
commit | 15fb81e58759809659d00b16e8af6c46665cc8a4 (patch) | |
tree | 55a8c46a79829d6360d22d62c2a0f63b94016e93 /gnu | |
parent | 33a0785998a2d418ad2d630d067f73959b0f4ade (diff) | |
download | guix-15fb81e58759809659d00b16e8af6c46665cc8a4.tar guix-15fb81e58759809659d00b16e8af6c46665cc8a4.tar.gz |
gnu: ghc-hspec-expectations: Update to 0.8.2.
* gnu/packages/haskell-check.scm (ghc-hspec-expectations): Update to 0.8.2.
[arguments]: Disable tests.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/haskell-check.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm index dcf79b610f..a3179cf945 100644 --- a/gnu/packages/haskell-check.scm +++ b/gnu/packages/haskell-check.scm @@ -762,18 +762,19 @@ Haskell, inspired by the Ruby library RSpec.") (define-public ghc-hspec-expectations (package (name "ghc-hspec-expectations") - (version "0.7.2") + (version "0.8.2") (source (origin (method url-fetch) - (uri (string-append - "https://hackage.haskell.org/package/hspec-expectations/hspec-expectations-" - version - ".tar.gz")) + (uri (string-append "https://hackage.haskell.org/package/" + "hspec-expectations/hspec-expectations-" + version ".tar.gz")) (sha256 (base32 - "1w56jiqfyl237sr207gh3b0l8sr9layy0mdsgd5wknzb49mif6ip")))) + "1vxl9zazbaapijr6zmcj72j9wf7ka1pirrjbwddwwddg3zm0g5l1")))) (build-system haskell-build-system) + ;; Tests depend on ghc-nanospec. + (arguments '(#:tests? #f)) (inputs `(("ghc-hunit" ,ghc-hunit))) (home-page "https://github.com/sol/hspec-expectations") (synopsis "Catchy combinators for HUnit") |