Skip to content

Commit

Permalink
Disable cabak-source-repo-comment, project-flags
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed Mar 25, 2023
1 parent 3b471a8 commit 89868e0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions test/cabal-source-repo-comments/default.nix
Expand Up @@ -27,8 +27,12 @@ in recurseIntoAttrs {
touch $out
'';

meta.platforms = platforms.all;

meta = rec {
platforms = lib.platforms.all;
broken = stdenv.hostPlatform.isGhcjs && __elem compiler-nix-name ["ghc961"];
disabled = broken;
};

passthru = {
# Attributes used for debugging with nix repl
inherit packages;
Expand Down
6 changes: 5 additions & 1 deletion test/project-flags/stack.nix
Expand Up @@ -26,7 +26,11 @@ in recurseIntoAttrs {
touch $out
'';

meta.platforms = platforms.all;
meta = rec {
platforms = lib.platforms.all;
broken = stdenv.hostPlatform.isGhcjs && __elem compiler-nix-name ["ghc961"];
disabled = broken;
};

passthru = {
# Attributes used for debugging with nix repl
Expand Down

0 comments on commit 89868e0

Please sign in to comment.