We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c6f255 commit 557bebcCopy full SHA for 557bebc
overlays/default-setup.nix
@@ -6,7 +6,10 @@
6
# to compute the same derivation multiple times.
7
final: prev:
8
let
9
- nonReinstallablePkgs = ["base" "Cabal"];
+ nonReinstallablePkgs =
10
+ if final.stdenv.targetPlatform.isGhcjs
11
+ then ["base" "Cabal" "filepath" "directory"]
12
+ else ["base" "Cabal"];
13
haskellLib = final.haskell-nix.haskellLib;
14
defaultSetupSrc =
15
if final.stdenv.targetPlatform.isGhcjs
0 commit comments