Skip to content

Commit

Permalink
disable cabal-simple.test-shell
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed Mar 25, 2023
1 parent 89868e0 commit be78b3b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion test/cabal-simple/default.nix
Expand Up @@ -32,7 +32,16 @@ in recurseIntoAttrs {
};

# Used for testing externally with nix-shell (../tests.sh).
test-shell = project.shellFor { tools = { cabal = "latest"; }; withHoogle = !__elem compiler-nix-name ["ghc901" "ghc902" "ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927"]; };
test-shell = (project.shellFor {
tools = { cabal = "latest"; };
withHoogle = !__elem compiler-nix-name ["ghc901" "ghc902" "ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927"];
}).overrideAttrs (_: _: {
meta = rec {
platforms = lib.platforms.all;
broken = stdenv.hostPlatform.isGhcjs && __elem compiler-nix-name ["ghc961"];
disabled = broken;
};
});

run = stdenv.mkDerivation {
name = "cabal-simple-test";
Expand Down

0 comments on commit be78b3b

Please sign in to comment.