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
1 changed files with 8 additions and 0 deletions
|
@ -8338,6 +8338,14 @@ Rust syntax. It is intended to be useful for two different purposes:
|
||||||
(base32
|
(base32
|
||||||
"03zycmwrchhqvi37fdvlzz2d1vl4hy0i8xyys1zznw38qfq0h2i5"))))
|
"03zycmwrchhqvi37fdvlzz2d1vl4hy0i8xyys1zznw38qfq0h2i5"))))
|
||||||
(build-system haskell-build-system)
|
(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
|
(inputs
|
||||||
`(("ghc-cereal" ,ghc-cereal)
|
`(("ghc-cereal" ,ghc-cereal)
|
||||||
("ghc-data-default-class"
|
("ghc-data-default-class"
|
||||||
|
|
Reference in a new issue