nixpkgs/pkgs/development/compilers/ghcjs-ng/configured-ghcjs-src.nix

52 lines
902 B
Nix
Raw Normal View History

2018-05-12 07:06:47 +02:00
{ perl
, autoconf
, automake
, python3
, gcc
, cabal-install
, runCommand
, lib
, stdenv
2018-05-12 07:06:47 +02:00
, ghc
, happy
, alex
, ghcjsSrc
}:
runCommand "configured-ghcjs-src" {
buildInputs = [
perl
autoconf
automake
python3
ghc
happy
alex
cabal-install
] ++ lib.optionals stdenv.isDarwin [
gcc # https://github.com/ghcjs/ghcjs/issues/663
2018-05-12 07:06:47 +02:00
];
inherit ghcjsSrc;
} ''
export HOME=$(pwd)
mkdir $HOME/.cabal
touch $HOME/.cabal/config
2018-05-12 07:06:47 +02:00
cp -r "$ghcjsSrc" "$out"
chmod -R +w "$out"
cd "$out"
# TODO: Find a better way to avoid impure version numbers
sed -i 's/RELEASE=NO/RELEASE=YES/' ghc/configure.ac
# TODO: How to actually fix this?
# Seems to work fine and produce the right files.
touch ghc/includes/ghcautoconf.h
2019-01-15 00:04:19 +01:00
mkdir -p ghc/compiler/vectorise
mkdir -p ghc/utils/haddock/haddock-library/vendor
2018-05-12 07:06:47 +02:00
patchShebangs .
./utils/makePackages.sh copy
''