about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2023-11-11 11:30:55 +0900
committerDennis Gosnell <cdep.illabout@gmail.com>2023-11-11 11:30:55 +0900
commit18cd34573b1ecd51124cff1a4690fc565d9109ed (patch)
treebb87fe6d867dee3d3611498a33001dbc6382798d
parentc7b024e05ef72a54d5ea81f2308a01ccb0c67563 (diff)
downloadnixlib-18cd34573b1ecd51124cff1a4690fc565d9109ed.tar
nixlib-18cd34573b1ecd51124cff1a4690fc565d9109ed.tar.gz
nixlib-18cd34573b1ecd51124cff1a4690fc565d9109ed.tar.bz2
nixlib-18cd34573b1ecd51124cff1a4690fc565d9109ed.tar.lz
nixlib-18cd34573b1ecd51124cff1a4690fc565d9109ed.tar.xz
nixlib-18cd34573b1ecd51124cff1a4690fc565d9109ed.tar.zst
nixlib-18cd34573b1ecd51124cff1a4690fc565d9109ed.zip
haskell.packages.ghc88.text-metrics: jailbreak because of overly-strict bounds
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index 207697356f97..acde3041b1fa 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -148,6 +148,9 @@ self: super: {
   # has a restrictive lower bound on Cabal
   fourmolu = doJailbreak super.fourmolu;
 
+  # Overly-strict bounds introducted by a revision in version 0.3.2.
+  text-metrics = doJailbreak super.text-metrics;
+
   # OneTuple needs hashable (instead of ghc-prim) and foldable1-classes-compat for GHC < 9
   OneTuple = addBuildDepends [
     self.foldable1-classes-compat