Skip to content

nix: add support for ghc 9.0.1 #1995

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jul 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable tests for every ghc901 package
  • Loading branch information
berberman committed Jul 3, 2021
commit 06387afdfc844ac6b35a0023ad110b952cff883b
6 changes: 5 additions & 1 deletion configuration-ghc-901.nix
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ let
]) { };

# YOLO
mkDerivation = args: hsuper.mkDerivation (args // { jailbreak = true; });
mkDerivation = args:
hsuper.mkDerivation (args // {
jailbreak = true;
doCheck = false;
});
};
in {
inherit disabledPlugins;
Expand Down