1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-pointfree.cabal,v 1.2 2022/02/11 13:17:21 pho Exp $
Fix build with GHC 9.2
--- pointfree.cabal.orig 2001-09-09 01:46:40.000000000 +0000
+++ pointfree.cabal
@@ -27,7 +27,7 @@ Library
Exposed-modules: Pointfree
Default-language: Haskell2010
- Build-depends: base >= 4.5 && < 4.15,
+ Build-depends: base >= 4.5 && < 5,
array >= 0.3 && < 0.6,
containers >= 0.4 && < 0.7,
haskell-src-exts >= 1.20 && < 1.24,
@@ -44,7 +44,7 @@ Executable pointfree
Main-is: Main.hs
Default-language: Haskell2010
GHC-options: -W
- Build-depends: base >= 4.5 && < 4.15,
+ Build-depends: base >= 4.5 && < 5,
array >= 0.3 && < 0.6,
containers >= 0.4 && < 0.7,
haskell-src-exts >= 1.20 && < 1.24,
|