Skip to content

Commit a7993ab

Browse files
nix: use upstream GHC for static build
This way we benefit from NixOS' binary cache to deliver GHC for us and don't need to cache it ourselves. This will become relevant once we do that for more platforms.
1 parent e0d826b commit a7993ab

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

nix/static.nix

+1-11
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,7 @@ let
88
inherit (pkgs) pkgsStatic;
99
inherit (pkgsStatic.haskell) lib;
1010

11-
packagesStatic =
12-
pkgsStatic.haskell.packages."${compiler}".override (old: {
13-
ghc = pkgsStatic.pkgsBuildHost.haskell.compiler."${compiler}".override {
14-
# Using the bundled libffi generally works better for cross-compiling
15-
libffi = null;
16-
# Building sphinx fails on some platforms
17-
enableDocs = false;
18-
# Cross compiling with native bignum works better than with gmp
19-
enableNativeBignum = true;
20-
};
21-
});
11+
packagesStatic = pkgsStatic.haskell.packages.native-bignum."${compiler}";
2212

2313
makeExecutableStatic = drv: pkgs.lib.pipe drv [
2414
lib.compose.justStaticExecutables

0 commit comments

Comments
 (0)