From c72d8d6ebe3cc4b298f1e51ddafa2994dbf2588e Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 5 May 2023 12:45:54 -0400
Subject: [PATCH] loosen base constraints

we need ghc 8.6.5 compatibility which means base 4.12
---
 gbs-downloader.cabal | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gbs-downloader.cabal b/gbs-downloader.cabal
index 71d08e5..90a55ed 100644
--- a/gbs-downloader.cabal
+++ b/gbs-downloader.cabal
@@ -1,4 +1,4 @@
-cabal-version:   3.0
+cabal-version:   2.4
 
 -- The cabal-version field refers to the version of the .cabal specification,
 -- and can be different from the cabal-install (the tool) version and the
@@ -88,7 +88,7 @@ library
   -- Other library packages from which modules are imported.
   build-depends:
     , aeson
-    , base                     ^>=4.14.3.0
+    , base
     , base32
     , base64
     , binary
@@ -130,7 +130,7 @@ executable gbs-download
   -- Other library packages from which modules are imported.
   build-depends:
     , aeson
-    , base            ^>=4.14.3.0
+    , base
     , bytestring
     , containers
     , gbs-downloader
@@ -168,7 +168,7 @@ test-suite gbs-downloader-test
 
   -- Test dependencies.
   build-depends:
-    , base            ^>=4.14.3.0
+    , base
     , base32
     , binary
     , bytestring
-- 
GitLab