gnu: ghc-wave: Fix build.
* gnu/packages/haskell.scm (ghc-wave)[arguments]: Add a phase to relax dependency constraints.
This commit is contained in:
parent
eaa1f873e6
commit
70fa5899af
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue