gnu: ghc-wave: Fix build.

* gnu/packages/haskell.scm (ghc-wave)[arguments]: Add a phase to relax
dependency constraints.
master
宋文武 2018-09-30 20:33:46 +08:00 committed by Ricardo Wurmus
parent eaa1f873e6
commit 70fa5899af
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 8 additions and 0 deletions

View File

@ -8338,6 +8338,14 @@ Rust syntax. It is intended to be useful for two different purposes:
(base32
"03zycmwrchhqvi37fdvlzz2d1vl4hy0i8xyys1zznw38qfq0h2i5"))))
(build-system haskell-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(add-before 'configure 'update-constraints
(lambda _
(substitute* "wave.cabal"
(("temporary.* < 1\\.3")
"temporary >= 1.1 && < 1.4")))))))
(inputs
`(("ghc-cereal" ,ghc-cereal)
("ghc-data-default-class"