* gnu/packages/haskell.scm (ghc-split): Update package dependencies for
compatibility with new GHC.
---
gnu/packages/haskell.scm | 21 ++++++++++++++++++++-
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 328d06e..e0fdf1f 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1418,8 +1418,27 @@ and high speed.")
(base32
"0xa3j0gwr6k5vizxybnzk5fgb3pppgspi6mysnp2gwjp2dbrxkzr"))))
(build-system haskell-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before
+ 'configure 'update-cabal
+ ;; the cabal file on hackage is updated, but the tar.gz does not
+ ;; include it.
+ (lambda* _
+ (copy-file (assoc-ref %build-inputs "ghc-split-cabal-update")
+ "split.cabal"))))))
(inputs
- `(("ghc-quickcheck" ,ghc-quickcheck)))
+ `(("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-split-cabal-update"
+ ,(origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/split-"
+ version "/revision/1.cabal"))
+ (sha256
+ (base32
+ "1i1h5v1zqvganhzy1wdd9r648yjpir078n0g8051njg82h2f964h"))))))
(home-page "http://hackage.haskell.org/package/split")
(synopsis
"Combinator library for splitting lists")
--
2.6.1