Skip to content

Commit 3e51fee

Browse files
authored
Remove overlay/ghc.nix (#2340)
* Remove overlay/ghc.nix It breaks the `override` function on the ghc compilers and it only serves to add "stackprotector" to `hardeningDisable`. We can just add that to `compiler/ghc/default.nix`. It looks like it also added "format", but that is already present. For `hostPlatform.isAarch32` it adds "pie" (not already present), but we don't build GHC on 32bit arm. * Update default compiler to GHC 9.6.6 (from 9.2.8)
1 parent 0c88dbd commit 3e51fee

File tree

5 files changed

+3
-34
lines changed

5 files changed

+3
-34
lines changed

compiler/ghc/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ stdenv.mkDerivation (rec {
546546

547547
checkTarget = "test";
548548

549-
hardeningDisable = [ "format" ]
549+
hardeningDisable = [ "format" "stackprotector" ]
550550
++ lib.optional stdenv.targetPlatform.isAarch32 "pic"
551551
++ lib.optional stdenv.targetPlatform.isMusl "pie"
552552
++ lib.optional enableDWARF "fortify";

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585

8686
ifdLevel = 3;
8787
runningHydraEvalTest = false;
88-
defaultCompiler = "ghc928";
88+
defaultCompiler = "ghc966";
8989
config = import ./config.nix;
9090

9191
inherit (nixpkgs) lib;

hix/init/nix/hix.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{pkgs, ...}: {
22
# name = "project-name";
3-
compiler-nix-name = "ghc92"; # Version of GHC to use
3+
compiler-nix-name = "ghc96"; # Version of GHC to use
44

55
# Cross compilation support:
66
# crossPlatforms = p: pkgs.lib.optionals pkgs.stdenv.hostPlatform.isx86_64 ([

overlays/default.nix

-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ let
7676

7777
bootstrap = import ./bootstrap.nix;
7878
compiler-llvm = import ./compiler-llvm.nix;
79-
ghc = import ./ghc.nix;
8079
ghc-packages = import ./ghc-packages.nix;
8180
darwin = import ./darwin.nix;
8281
windows = import ./windows.nix;
@@ -114,7 +113,6 @@ let
114113
nix-tools
115114
bootstrap
116115
compiler-llvm
117-
ghc
118116
ghc-packages
119117
darwin
120118
windows

overlays/ghc.nix

-29
This file was deleted.

0 commit comments

Comments
 (0)