about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2024-02-28 18:34:34 +0100
committerRobert Hensing <robert@roberthensing.nl>2024-02-28 18:34:34 +0100
commitbfd910008fef76f74519e0ab6fcfa7371abf109f (patch)
treee3f0592d498725c058f1b6ce204427a77a93ee78 /pkgs/development/haskell-modules
parentf82850337a0b235f095afcdd86a1009d0dcc4a3f (diff)
downloadnixlib-bfd910008fef76f74519e0ab6fcfa7371abf109f.tar
nixlib-bfd910008fef76f74519e0ab6fcfa7371abf109f.tar.gz
nixlib-bfd910008fef76f74519e0ab6fcfa7371abf109f.tar.bz2
nixlib-bfd910008fef76f74519e0ab6fcfa7371abf109f.tar.lz
nixlib-bfd910008fef76f74519e0ab6fcfa7371abf109f.tar.xz
nixlib-bfd910008fef76f74519e0ab6fcfa7371abf109f.tar.zst
nixlib-bfd910008fef76f74519e0ab6fcfa7371abf109f.zip
haskell.packages.ghc98.hiedb: dontCheck
Symbol syntax seems to have changed in 9.8, removing a seemingly
redundant colon; appears to be an overspecified assertion.
See https://github.com/wz1000/HieDb/issues/74
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
index f1aeb164724b..56ca1ae601fc 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
@@ -123,4 +123,10 @@ self: super: {
       })
     super.libmpd;
 
+  # Symbol syntax seems to have changed in 9.8, removing a seemingly redundant colon; appears to be an overspecified assertion.
+  # https://github.com/wz1000/HieDb/issues/74
+  hiedb =
+    assert super.hiedb.version == "0.5.0.1";
+    dontCheck super.hiedb;
+
 }