1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 12:00:35 +02:00

gnu: ghc-tasty: Update to 1.1.0.3.

* gnu/packages/haskell.scm (ghc-integer-logarithms-bootstrap,
ghc-scientific-bootstrap, ghc-attoparsec-bootstrap,
ghc-wcwidth-bootstrap): New variables to break a dependency cycle from
ghc-tasty.
* gnu/packages/haskell-check.scm (ghc-tasty): Update to 1.1.0.3.
[inputs]: Add ghc-wcwidth-bootstrap; remove ghc-regex-tdfa-rc.
This commit is contained in:
Timothy Sample 2018-09-05 14:22:28 -04:00 committed by Ricardo Wurmus
parent 3c00bc13a5
commit 9d1944a493
No known key found for this signature in database
GPG key ID: 197A5888235FACAC
2 changed files with 46 additions and 4 deletions

View file

@ -2877,6 +2877,17 @@ aimed particularly at dealing efficiently with network protocols and
complicated text/binary file formats.")
(license license:bsd-3)))
(define-public ghc-attoparsec-bootstrap
(package
(inherit ghc-attoparsec)
(name "ghc-attoparsec-bootstrap")
(arguments `(#:tests? #f))
(inputs
`(("ghc-scientific" ,ghc-scientific-bootstrap)
("ghc-text" ,ghc-text)))
(native-inputs '())
(properties '(hidden? #t))))
(define-public ghc-zip-archive
(package
(name "ghc-zip-archive")
@ -5227,6 +5238,14 @@ occurrences of a substring (the first in case of overlaps) with another.")
in migrated modules.")
(license license:expat)))
(define-public ghc-integer-logarithms-bootstrap
(package
(inherit ghc-integer-logarithms)
(name "ghc-integer-logarithms-bootstrap")
(arguments `(#:tests? #f))
(native-inputs '())
(properties '(hidden? #t))))
(define-public ghc-scientific
(package
(name "ghc-scientific")
@ -5264,6 +5283,19 @@ and space efficient. They are represented using
notation}.")
(license license:bsd-3)))
(define-public ghc-scientific-bootstrap
(package
(inherit ghc-scientific)
(name "ghc-scientific-bootstrap")
(arguments `(#:tests? #f))
(inputs
`(("ghc-integer-logarithms" ,ghc-integer-logarithms-bootstrap)
("ghc-text" ,ghc-text)
("ghc-hashable" ,ghc-hashable)
("ghc-primitive" ,ghc-primitive)))
(native-inputs '())
(properties '(hidden? #t))))
(define-public ghc-boxes
(package
(name "ghc-boxes")
@ -10199,4 +10231,14 @@ The command line tool can compile a width table to Haskell code that assigns
widths to the Char type.")
(license license:bsd-3)))
(define-public ghc-wcwidth-bootstrap
(package
(inherit ghc-wcwidth)
(name "ghc-wcwidth-bootstrap")
(inputs
`(("ghc-setlocale" ,ghc-setlocale)
("ghc-utf8-string" ,ghc-utf8-string)
("ghc-attoparsec" ,ghc-attoparsec-bootstrap)))
(properties '(hidden? #t))))
;;; haskell.scm ends here