summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2022-04-25 22:22:21 +0200
committerTom Smeding <tom@tomsmeding.com>2022-04-25 22:22:21 +0200
commit8a1617df841423b7d87c2207bc80c4471ce70604 (patch)
treec4d3b545ab4b1a178675ca56ee09a778bd0d1aaf
parent6080ed0182e65d9cd51b9a1d7209ff82a5e41fa5 (diff)
Fix dependency bounds
-rw-r--r--ghc-gc-hook.cabal4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc-gc-hook.cabal b/ghc-gc-hook.cabal
index c39b3c2..0de7e5a 100644
--- a/ghc-gc-hook.cabal
+++ b/ghc-gc-hook.cabal
@@ -22,7 +22,7 @@ library
c-sources: cbits/hook.c
build-depends:
base >= 4.14 && < 4.17,
- clock
+ clock >= 0.8.3 && < 0.9
default-language: Haskell2010
cc-options: -Wall
ghc-options: -Wall
@@ -33,7 +33,7 @@ test-suite test
hs-source-dirs: test
c-sources: test/cbits/testhook.c
build-depends:
- base >= 4.14 && < 4.17,
+ base,
ghc-gc-hook,
clock
default-language: Haskell2010