diff options
author | Leo Famulari <[email protected]> | 2018-01-11 14:22:50 -0800 |
---|---|---|
committer | Leo Famulari <[email protected]> | 2018-01-11 14:22:50 -0800 |
commit | 4adb40bffc0dda8871878283887a0e0cd88d9578 (patch) | |
tree | 74d5fb686116002da72de4a1075d0ed8f307cec1 /gnu/packages/haskell-check.scm | |
parent | 4610ab7c9a5327df0d475262817bc081a5891aa8 (diff) | |
parent | 138c08899ba73049de8afd2b74a8cf6845a1d9e1 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/haskell-check.scm')
-rw-r--r-- | gnu/packages/haskell-check.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm index 6bcf6c9589..45041c3698 100644 --- a/gnu/packages/haskell-check.scm +++ b/gnu/packages/haskell-check.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2016 David Craven <[email protected]> ;;; Copyright © 2017 Danny Milosavljevic <[email protected]> ;;; Copyright © 2017 rsiddharth <[email protected]> -;;; Copyright © 2017 Tobias Geerinckx-Rice <[email protected]> +;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -343,17 +343,16 @@ provided by the Haskell Platform.") (define-public ghc-quickcheck-unicode (package (name "ghc-quickcheck-unicode") - (version "1.0.0.1") + (version "1.0.1.0") (source (origin (method url-fetch) (uri (string-append - "https://hackage.haskell.org/package/quickcheck-unicode/quickcheck-unicode-" - version - ".tar.gz")) + "https://hackage.haskell.org/package/quickcheck-unicode/" + "quickcheck-unicode-" version ".tar.gz")) (sha256 (base32 - "1a8nl6x7l9b22yx61wm0bh2n1xzb1hd5i5zgg1w4fpaivjnrrhi4")))) + "0s43s1bzbg3gwsjgm7fpyksd1339f0m26dlw2famxwyzgvm0a80k")))) (build-system haskell-build-system) (inputs `(("ghc-quickcheck" ,ghc-quickcheck))) (home-page |