about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2024-02-29 00:50:03 +0100
committersternenseemann <sternenseemann@systemli.org>2024-02-29 00:50:50 +0100
commitc014c04d4a7cb701c658f02bc848a8875c85f80a (patch)
tree8d2922a859e02c6ef3606355e1f60a1716e11091 /pkgs/development/haskell-modules/configuration-common.nix
parentbfd910008fef76f74519e0ab6fcfa7371abf109f (diff)
downloadnixlib-c014c04d4a7cb701c658f02bc848a8875c85f80a.tar
nixlib-c014c04d4a7cb701c658f02bc848a8875c85f80a.tar.gz
nixlib-c014c04d4a7cb701c658f02bc848a8875c85f80a.tar.bz2
nixlib-c014c04d4a7cb701c658f02bc848a8875c85f80a.tar.lz
nixlib-c014c04d4a7cb701c658f02bc848a8875c85f80a.tar.xz
nixlib-c014c04d4a7cb701c658f02bc848a8875c85f80a.tar.zst
nixlib-c014c04d4a7cb701c658f02bc848a8875c85f80a.zip
haskellPackages.feed: allow base-compat-0.13
https://github.com/haskell-party/feed/issues/66#issuecomment-1965516871
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 7ad83affa8a6..8542d16e080c 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1925,7 +1925,10 @@ self: super: {
   vivid-supercollider = dontCheck super.vivid-supercollider;
 
   # Test suite does not compile.
-  feed = dontCheck super.feed;
+  feed = overrideCabal (drv: {
+    jailbreak = lib.warnIf (lib.toInt drv.revision >= 4) "haskellPackages.feed: jailbreak can be removed" true;
+    doCheck = false;
+  }) super.feed;
 
   spacecookie = overrideCabal (old: {
     buildTools = (old.buildTools or []) ++ [ pkgs.buildPackages.installShellFiles ];