about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghcjs/8.10/configured-ghcjs-src.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/ghcjs/8.10/configured-ghcjs-src.nix')
-rw-r--r--pkgs/development/compilers/ghcjs/8.10/configured-ghcjs-src.nix67
1 files changed, 0 insertions, 67 deletions
diff --git a/pkgs/development/compilers/ghcjs/8.10/configured-ghcjs-src.nix b/pkgs/development/compilers/ghcjs/8.10/configured-ghcjs-src.nix
deleted file mode 100644
index c9e6d2f09cf7..000000000000
--- a/pkgs/development/compilers/ghcjs/8.10/configured-ghcjs-src.nix
+++ /dev/null
@@ -1,67 +0,0 @@
-{ perl
-, autoconf
-, automake
-, python3
-, gcc
-, cabal-install
-, runCommand
-, fetchpatch
-
-, ghc
-, happy
-, alex
-
-, ghcjsSrc
-, version
-}:
-
-runCommand "configured-ghcjs-src" {
-  nativeBuildInputs = [
-    perl
-    autoconf
-    automake
-    python3
-    ghc
-    happy
-    alex
-    cabal-install
-    gcc
-  ];
-
-  inherit ghcjsSrc;
-
-  ctimePatch = fetchpatch {
-    name = "ghcjs-base-ctime-64-bit.patch";
-    url = "https://github.com/ghcjs/ghcjs/commit/b7711fbca7c3f43a61f1dba526e6f2a2656ef44c.patch";
-    hash = "sha256-zZ3l8/5gbIGtvu0s2Xl92fEDhkhJ2c2w+5Ql5qkvr3s=";
-  };
-} ''
-  export HOME=$(pwd)
-  mkdir $HOME/.cabal
-  touch $HOME/.cabal/config
-  cp -r "$ghcjsSrc" "$out"
-  chmod -R +w "$out"
-  cd "$out"
-
-  patch -p1 -i "$ctimePatch"
-
-  # TODO: Find a better way to avoid impure version numbers
-  sed -i 's/RELEASE=NO/RELEASE=YES/' ghc/configure.ac
-
-  # These files are needed by ghc-boot package, and these are generated by the
-  # make/hadrian build system when compiling ghc. Since we dont have access to
-  # the generated code of the ghc while it got built, here is a little hack to
-  # generate these again.
-  runhaskell ${./generate_host_version.hs}
-  mkdir -p utils/pkg-cache/ghc/libraries/ghc-boot/dist-install/build/GHC/Platform
-  mv Host.hs utils/pkg-cache/ghc/libraries/ghc-boot/dist-install/build/GHC/Platform/Host.hs
-  mv Version.hs utils/pkg-cache/ghc/libraries/ghc-boot/dist-install/build/GHC/Version.hs
-
-  # The ghcjs has the following hardcoded paths of lib dir in its code. Patching
-  # these to match the path expected by the nixpkgs's generic-builder, etc.
-  sed -i 's/libSubDir = "lib"/libSubDir = "lib\/ghcjs-${version}"/' src-bin/Boot.hs
-  sed -i 's@let libDir = takeDirectory haddockPath </> ".." </> "lib"@let libDir = takeDirectory haddockPath </> ".." </> "lib/ghcjs-${version}"@' src-bin/HaddockDriver.hs
-
-  patchShebangs .
-  ./utils/makePackages.sh copy
-''