Skip to content

Commit

Permalink
haskellPackages.feed: allow base-compat-0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
sternenseemann committed Feb 28, 2024
1 parent bfd9100 commit c014c04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand Down

0 comments on commit c014c04

Please sign in to comment.