summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-03-07 20:07:34 +0100
committersternenseemann <sternenseemann@systemli.org>2023-03-07 20:07:34 +0100
commit70ec07b998ba7bb60f2a2b5872d3b46c72fb052a (patch)
tree408195e1326e27f523d43fd59aa43bb744749c5d /pkgs/development
parent3f73f2627fe4f0ceacbe655f5bc7ed792230a3f3 (diff)
downloadnixpkgs-70ec07b998ba7bb60f2a2b5872d3b46c72fb052a.tar
nixpkgs-70ec07b998ba7bb60f2a2b5872d3b46c72fb052a.tar.gz
nixpkgs-70ec07b998ba7bb60f2a2b5872d3b46c72fb052a.tar.bz2
nixpkgs-70ec07b998ba7bb60f2a2b5872d3b46c72fb052a.tar.lz
nixpkgs-70ec07b998ba7bb60f2a2b5872d3b46c72fb052a.tar.xz
nixpkgs-70ec07b998ba7bb60f2a2b5872d3b46c72fb052a.tar.zst
nixpkgs-70ec07b998ba7bb60f2a2b5872d3b46c72fb052a.zip
haskell.packages.ghc94.aeson: allow quickcheck-instances 0.3.28
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
index 5bdd1686935..e063268f968 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
@@ -71,7 +71,8 @@ in {
 
   # Jailbreaks & Version Updates
 
-  aeson = doDistribute self.aeson_2_1_2_1;
+  # Jailbreak to allow quickcheck-instances-0.3.28 (too strict lower bound)
+  aeson = doDistribute (doJailbreak self.aeson_2_1_2_1);
 
   assoc = doJailbreak super.assoc;
   async = doJailbreak super.async;