gnu: ghc-tasty: Update to 1.1.0.3.
* gnu/packages/haskell-check.scm (ghc-tasty): Update to 1.1.0.3. [inputs]: Add ghc-wcwidth. (ghc-attoparsec-bootstrap, ghc-integer-logarithms-bootstrap, ghc-scientific-bootstrap): New variables. (ghc-wcwidth)[inputs]: Replace ghc-attoparsec with ghc-attoparsec-bootstrap. (ghc-scientific)[inputs]: Replace ghc-integer-logarithms with ghc-integer-logarithms-bootstrap. (ghc-attoparsec)[inputs]: Replace ghc-scientific with ghc-scientific-bootstrap.
This commit is contained in:
parent
9c4b522f15
commit
3ad6b89090
|
@ -183,7 +183,7 @@ timer functions of different operating systems via a unified API.")
|
||||||
(define-public ghc-tasty
|
(define-public ghc-tasty
|
||||||
(package
|
(package
|
||||||
(name "ghc-tasty")
|
(name "ghc-tasty")
|
||||||
(version "0.11.0.4")
|
(version "1.1.0.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -193,7 +193,7 @@ timer functions of different operating systems via a unified API.")
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"05pxjzgbgjdn7477xry0ssjrnmnsydqiq6nm6ck8n2da1baliqp0"))))
|
"14riid753hjqr6lca1kgxpnvq0wykf0k3qc5jpag42hh8bszav22"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-stm" ,ghc-stm)
|
`(("ghc-stm" ,ghc-stm)
|
||||||
|
@ -205,7 +205,8 @@ timer functions of different operating systems via a unified API.")
|
||||||
("ghc-unbounded-delays" ,ghc-unbounded-delays)
|
("ghc-unbounded-delays" ,ghc-unbounded-delays)
|
||||||
("ghc-async" ,ghc-async)
|
("ghc-async" ,ghc-async)
|
||||||
("ghc-ansi-terminal" ,ghc-ansi-terminal)
|
("ghc-ansi-terminal" ,ghc-ansi-terminal)
|
||||||
("ghc-clock-bootstrap" ,ghc-clock-bootstrap)))
|
("ghc-clock-bootstrap" ,ghc-clock-bootstrap)
|
||||||
|
("ghc-wcwidth" ,ghc-wcwidth)))
|
||||||
(home-page "http://documentup.com/feuerbach/tasty")
|
(home-page "http://documentup.com/feuerbach/tasty")
|
||||||
(synopsis "Modern and extensible testing framework")
|
(synopsis "Modern and extensible testing framework")
|
||||||
(description "Tasty is a modern testing framework for Haskell. It lets
|
(description "Tasty is a modern testing framework for Haskell. It lets
|
||||||
|
|
|
@ -2866,7 +2866,7 @@ with slicing and Clang-style colored diagnostics.")
|
||||||
;; re-enable them.
|
;; re-enable them.
|
||||||
(arguments `(#:tests? #f))
|
(arguments `(#:tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-scientific" ,ghc-scientific)
|
`(("ghc-scientific-bootstrap" ,ghc-scientific-bootstrap)
|
||||||
("ghc-text" ,ghc-text)))
|
("ghc-text" ,ghc-text)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ghc-tasty" ,ghc-tasty)
|
`(("ghc-tasty" ,ghc-tasty)
|
||||||
|
@ -2881,6 +2881,13 @@ aimed particularly at dealing efficiently with network protocols and
|
||||||
complicated text/binary file formats.")
|
complicated text/binary file formats.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define ghc-attoparsec-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-attoparsec)
|
||||||
|
(name "ghc-attoparsec-bootstrap")
|
||||||
|
(arguments '(#:tests? #f))
|
||||||
|
(native-inputs '())))
|
||||||
|
|
||||||
(define-public ghc-zip-archive
|
(define-public ghc-zip-archive
|
||||||
(package
|
(package
|
||||||
(name "ghc-zip-archive")
|
(name "ghc-zip-archive")
|
||||||
|
@ -5208,6 +5215,13 @@ occurrences of a substring (the first in case of overlaps) with another.")
|
||||||
in migrated modules.")
|
in migrated modules.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define ghc-integer-logarithms-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-integer-logarithms)
|
||||||
|
(name "ghc-integer-logarithms-bootstrap")
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
|
(native-inputs '())))
|
||||||
|
|
||||||
(define-public ghc-scientific
|
(define-public ghc-scientific
|
||||||
(package
|
(package
|
||||||
(name "ghc-scientific")
|
(name "ghc-scientific")
|
||||||
|
@ -5224,7 +5238,7 @@ in migrated modules.")
|
||||||
"03ql2f0ac8bsl524idy9xxa3kxisb2sj3avflzw580j5hzy0m397"))))
|
"03ql2f0ac8bsl524idy9xxa3kxisb2sj3avflzw580j5hzy0m397"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-integer-logarithms" ,ghc-integer-logarithms)
|
`(("ghc-integer-logarithms-bootstrap" ,ghc-integer-logarithms-bootstrap)
|
||||||
("ghc-text" ,ghc-text)
|
("ghc-text" ,ghc-text)
|
||||||
("ghc-hashable" ,ghc-hashable)
|
("ghc-hashable" ,ghc-hashable)
|
||||||
("ghc-primitive" ,ghc-primitive)))
|
("ghc-primitive" ,ghc-primitive)))
|
||||||
|
@ -5245,6 +5259,13 @@ and space efficient. They are represented using
|
||||||
notation}.")
|
notation}.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define ghc-scientific-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-scientific)
|
||||||
|
(name "ghc-scientific-bootstrap")
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
|
(native-inputs '())))
|
||||||
|
|
||||||
(define-public ghc-boxes
|
(define-public ghc-boxes
|
||||||
(package
|
(package
|
||||||
(name "ghc-boxes")
|
(name "ghc-boxes")
|
||||||
|
@ -10168,7 +10189,7 @@ backends provided by the @code{Cairo} and @code{Diagrams} libraries.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-setlocale" ,ghc-setlocale)
|
`(("ghc-setlocale" ,ghc-setlocale)
|
||||||
("ghc-utf8-string" ,ghc-utf8-string)
|
("ghc-utf8-string" ,ghc-utf8-string)
|
||||||
("ghc-attoparsec" ,ghc-attoparsec)))
|
("ghc-attoparsec-bootstrap" ,ghc-attoparsec-bootstrap)))
|
||||||
(home-page "https://github.com/solidsnack/wcwidth/")
|
(home-page "https://github.com/solidsnack/wcwidth/")
|
||||||
(synopsis "Haskell bindings to wcwidth")
|
(synopsis "Haskell bindings to wcwidth")
|
||||||
(description "This package provides Haskell bindings to your system's
|
(description "This package provides Haskell bindings to your system's
|
||||||
|
|
Loading…
Reference in New Issue