gnu: ghc-trifecta: Update to 2.
* gnu/packages/haskell.scm (ghc-trifecta): Update to 2. [inputs]: Remove ghc-doctest-0.13, ghc-doctest, and ghc-quickcheck. [native-inputs]: Add ghc-doctest and ghc-quickcheck.
This commit is contained in:
parent
e4bc57c85b
commit
dc676afb8c
|
@ -2944,7 +2944,7 @@ the parsers provided by @code{parsec}, @code{attoparsec} and @code{base}'s
|
||||||
(define-public ghc-trifecta
|
(define-public ghc-trifecta
|
||||||
(package
|
(package
|
||||||
(name "ghc-trifecta")
|
(name "ghc-trifecta")
|
||||||
(version "1.7.1.1")
|
(version "2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -2952,11 +2952,10 @@ the parsers provided by @code{parsec}, @code{attoparsec} and @code{base}'s
|
||||||
"trifecta-" version ".tar.gz"))
|
"trifecta-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13n6a3fdxngnzsjnhfrzigv1c2g0xm6lqkjcnirpc37sd0rpby31"))))
|
"0hznd8i65s81xy13i2qc7cvipw3lfb2yhkv53apbdsh6sbljz5sk"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-doctest" ,ghc-doctest-0.13)
|
`(("ghc-reducers" ,ghc-reducers)
|
||||||
("ghc-reducers" ,ghc-reducers)
|
|
||||||
("ghc-semigroups" ,ghc-semigroups)
|
("ghc-semigroups" ,ghc-semigroups)
|
||||||
("ghc-ansi-wl-pprint" ,ghc-ansi-wl-pprint)
|
("ghc-ansi-wl-pprint" ,ghc-ansi-wl-pprint)
|
||||||
("ghc-ansi-terminal" ,ghc-ansi-terminal)
|
("ghc-ansi-terminal" ,ghc-ansi-terminal)
|
||||||
|
@ -2965,17 +2964,17 @@ the parsers provided by @code{parsec}, @code{attoparsec} and @code{base}'s
|
||||||
("ghc-blaze-markup" ,ghc-blaze-markup)
|
("ghc-blaze-markup" ,ghc-blaze-markup)
|
||||||
("ghc-charset" ,ghc-charset)
|
("ghc-charset" ,ghc-charset)
|
||||||
("ghc-comonad" ,ghc-comonad)
|
("ghc-comonad" ,ghc-comonad)
|
||||||
("ghc-doctest" ,ghc-doctest)
|
|
||||||
("ghc-fingertree" ,ghc-fingertree)
|
("ghc-fingertree" ,ghc-fingertree)
|
||||||
("ghc-hashable" ,ghc-hashable)
|
("ghc-hashable" ,ghc-hashable)
|
||||||
("ghc-lens" ,ghc-lens)
|
("ghc-lens" ,ghc-lens)
|
||||||
("ghc-parsers" ,ghc-parsers)
|
("ghc-parsers" ,ghc-parsers)
|
||||||
("ghc-profunctors" ,ghc-profunctors)
|
("ghc-profunctors" ,ghc-profunctors)
|
||||||
("ghc-quickcheck" ,ghc-quickcheck)
|
|
||||||
("ghc-unordered-containers" ,ghc-unordered-containers)
|
("ghc-unordered-containers" ,ghc-unordered-containers)
|
||||||
("ghc-utf8-string" ,ghc-utf8-string)))
|
("ghc-utf8-string" ,ghc-utf8-string)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("cabal-doctest" ,cabal-doctest)))
|
`(("cabal-doctest" ,cabal-doctest)
|
||||||
|
("ghc-doctest" ,ghc-doctest)
|
||||||
|
("ghc-quickcheck" ,ghc-quickcheck)))
|
||||||
(home-page "https://github.com/ekmett/trifecta/")
|
(home-page "https://github.com/ekmett/trifecta/")
|
||||||
(synopsis "Parser combinator library with convenient diagnostics")
|
(synopsis "Parser combinator library with convenient diagnostics")
|
||||||
(description "Trifecta is a modern parser combinator library for Haskell,
|
(description "Trifecta is a modern parser combinator library for Haskell,
|
||||||
|
|
Loading…
Reference in New Issue