diff options
author | pho <pho@pkgsrc.org> | 2020-01-09 00:41:31 +0000 |
---|---|---|
committer | pho <pho@pkgsrc.org> | 2020-01-09 00:41:31 +0000 |
commit | aa7f2e02bba4c931e78cc4cb05b27d4b9cdeb79c (patch) | |
tree | 0220e00fdc662c930096eea8762f5f61d19f0b5b /devel/hs-tagged | |
parent | c2be1ab89e9309d9e56bd70335a0b989d70956ce (diff) | |
download | pkgsrc-aa7f2e02bba4c931e78cc4cb05b27d4b9cdeb79c.tar.gz |
Fix build with GHC 8.8
Diffstat (limited to 'devel/hs-tagged')
-rw-r--r-- | devel/hs-tagged/distinfo | 3 | ||||
-rw-r--r-- | devel/hs-tagged/patches/patch-tagged.cabal | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/devel/hs-tagged/distinfo b/devel/hs-tagged/distinfo index 0b3bdbca6d8..53c4936a860 100644 --- a/devel/hs-tagged/distinfo +++ b/devel/hs-tagged/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2019/12/31 14:47:06 pho Exp $ +$NetBSD: distinfo,v 1.4 2020/01/09 00:41:31 pho Exp $ SHA1 (tagged-0.8.6.tar.gz) = e2a1498a6bdadd78bd0aff721d001a10384d0fdf RMD160 (tagged-0.8.6.tar.gz) = 050cdac17ff3c87ace3e7df011fa9516ca686bfc SHA512 (tagged-0.8.6.tar.gz) = 8cec49ea6f54ba84109ec6068cce209321bfa4662d5acdf75e4019087e2890e3056bf13a237cb5caf3fec597b05b710ebbfb74e06b736b7fb2f87941defeb814 Size (tagged-0.8.6.tar.gz) = 11759 bytes +SHA1 (patch-tagged.cabal) = 01891cbe4b580e5199ad777186ec8286ac1df3e7 diff --git a/devel/hs-tagged/patches/patch-tagged.cabal b/devel/hs-tagged/patches/patch-tagged.cabal new file mode 100644 index 00000000000..baa699346c9 --- /dev/null +++ b/devel/hs-tagged/patches/patch-tagged.cabal @@ -0,0 +1,15 @@ +$NetBSD: patch-tagged.cabal,v 1.1 2020/01/09 00:41:31 pho Exp $ + +Fix build with GHC 8.8 + +--- tagged.cabal.orig 2018-07-02 22:53:28.000000000 +0000 ++++ tagged.cabal +@@ -67,7 +67,7 @@ library + + if impl(ghc>=7.6) + exposed-modules: Data.Proxy.TH +- build-depends: template-haskell >= 2.8 && < 2.15 ++ build-depends: template-haskell >= 2.8 && < 2.17 + + if flag(deepseq) + build-depends: deepseq >= 1.1 && < 1.5 |