haskell.compiler.ghc863Binary: remove llvm from buildInput

Aarch64 binary is not used.
This commit is contained in:
Luka Blaskovic 2020-01-18 17:56:06 +00:00 committed by worldofpeace
parent f6160bc6eb
commit b57464448b
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ stdenv { stdenv
, fetchurl, perl, gcc, llvm_39 , fetchurl, perl, gcc
, ncurses5, gmp, glibc, libiconv , ncurses5, gmp, glibc, libiconv
}: }:
@ -45,7 +45,6 @@ stdenv.mkDerivation rec {
or (throw "cannot bootstrap GHC on this platform")); or (throw "cannot bootstrap GHC on this platform"));
nativeBuildInputs = [ perl ]; nativeBuildInputs = [ perl ];
buildInputs = stdenv.lib.optionals (stdenv.targetPlatform.isAarch32 || stdenv.targetPlatform.isAarch64) [ llvm_39 ];
# Cannot patchelf beforehand due to relative RPATHs that anticipate # Cannot patchelf beforehand due to relative RPATHs that anticipate
# the final install location/ # the final install location/