about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2023-12-23 12:37:40 +0800
committerStefan Frijters <sfrijters@gmail.com>2024-01-01 23:17:16 +0100
commit111c8d73a479f707e920307564c0a16285d1d41a (patch)
tree6d846be79a8b6a9c26c1ab71d53da2ee56235f4a
parent677d868ca34ccf131ec0c1b3a18e5fa5ee79af00 (diff)
downloadnixlib-111c8d73a479f707e920307564c0a16285d1d41a.tar
nixlib-111c8d73a479f707e920307564c0a16285d1d41a.tar.gz
nixlib-111c8d73a479f707e920307564c0a16285d1d41a.tar.bz2
nixlib-111c8d73a479f707e920307564c0a16285d1d41a.tar.lz
nixlib-111c8d73a479f707e920307564c0a16285d1d41a.tar.xz
nixlib-111c8d73a479f707e920307564c0a16285d1d41a.tar.zst
nixlib-111c8d73a479f707e920307564c0a16285d1d41a.zip
haskellPackages.postgrest: Add more build-depends for 12.0.2
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index c4e4910201a9..850529f06bdf 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -2714,14 +2714,14 @@ self: super: {
   co-log-polysemy = doJailbreak super.co-log-polysemy;
   co-log-polysemy-formatting = doJailbreak super.co-log-polysemy-formatting;
 
-  # 2023-12-20: Needs newer postgrest package and extra dependencies
-  # 2022-12-02: Hackage release lags behind actual releases: https://github.com/PostgREST/postgrest/issues/2275
-  # 2022-12-02: Too strict bounds: https://github.com/PostgREST/postgrest/issues/2580
+  # 2023-12-20: Needs newer hasql-pool package and extra dependencies
   postgrest = lib.pipe (super.postgrest.overrideScope (lself: lsuper: {
     hasql-pool = lself.hasql-pool_0_10;
   })) [
-    (addBuildDepends [ self.extra self.fuzzyset_0_2_4 ])
+    (addBuildDepends [ self.extra self.fuzzyset_0_2_4 self.cache self.timeit ])
+    # 2022-12-02: Too strict bounds: https://github.com/PostgREST/postgrest/issues/2580
     doJailbreak
+    # 2022-12-02: Hackage release lags behind actual releases: https://github.com/PostgREST/postgrest/issues/2275
     (overrideSrc rec {
       version = "12.0.2";
       src = pkgs.fetchFromGitHub {