Skip to content

Instantly share code, notes, and snippets.

@domenkozar
Created December 11, 2020 22:46
Show Gist options
  • Save domenkozar/7addc61d17c4dbd19e01489b04fa06ec to your computer and use it in GitHub Desktop.
Save domenkozar/7addc61d17c4dbd19e01489b04fa06ec to your computer and use it in GitHub Desktop.
diff --git a/overlays/bootstrap.nix b/overlays/bootstrap.nix
index b165ab1..197b32f 100644
--- a/overlays/bootstrap.nix
+++ b/overlays/bootstrap.nix
@@ -134,11 +134,11 @@ in {
++ fromUntil "8.10" "8.10.2" ./patches/ghc/67738db10010fd28a8e997b5c8f83ea591b88a0e.patch
++ final.lib.optional (versionAtLeast "8.6.4" && versionLessThan "8.8") ./patches/ghc/ghc-no-system-linker.patch
- ++ fromUntil "8.10.2" "8.12" ./patches/ghc/MR3714-backported-to-8.10.2.patch
+ #++ fromUntil "8.10.2" "8.12" ./patches/ghc/MR3714-backported-to-8.10.2.patch
++ from "8.10.1" ./patches/ghc/ghc-acrt-iob-func.patch
- ++ fromUntil "8.10.1" "8.11" ./patches/ghc/ghc-8.10-ubxt.patch
+ #++ fromUntil "8.10.1" "8.11" ./patches/ghc/ghc-8.10-ubxt.patch
++ final.lib.optional (versionAtLeast "8.6.4") ./patches/ghc/Cabal-3886.patch
;
in ({
@@ -366,8 +366,16 @@ in {
src-spec = rec {
version = "8.10.2";
- url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
- sha256 = "02w8n085bw38vyp694j0lfk5wcnwkdaj7hhp0saj71x74533lmww";
+ file = final.fetchgit {
+ url = "https://gitlab.haskell.org/ghc/ghc.git";
+ rev = "b0ad86fb84fbd2ac78208e6545c48c7a09e7f4aa";
+ sha256 = "062lj0zlxhh0k1y70b0iz7p5q8z6i79g29fs20drazj99fyjfdzw";
+ postFetch = ''
+ PATH=$PATH:${final.autoconf}/bin:${final.automake}/bin
+ cd $out
+ ${final.python3}/bin/python ./boot
+ '';
+ };
};
ghc-patches = ghc-patches "8.10.2";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment