idrisPackages.idris-wrapper: Use stdenv's cc instead of always gcc

This should make it work on Darwin with clang.
This commit is contained in:
Silvan Mosberger 2019-03-26 04:15:20 +01:00
parent cfd2e6731a
commit 271403c69b
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7

View file

@ -1,4 +1,4 @@
{ stdenv, lib, symlinkJoin, makeWrapper, idris-no-deps, gcc, gmp }:
{ stdenv, lib, symlinkJoin, makeWrapper, idris-no-deps, gmp }:
symlinkJoin {
inherit (idris-no-deps) name src meta;
@ -6,7 +6,7 @@ symlinkJoin {
buildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/idris \
--run 'export IDRIS_CC=''${IDRIS_CC:-${lib.getBin gcc}/bin/gcc}' \
--run 'export IDRIS_CC=''${IDRIS_CC:-${stdenv.cc}/bin/cc}' \
--set NIX_CC_WRAPPER_${stdenv.cc.infixSalt}_TARGET_HOST 1 \
--prefix NIX_CFLAGS_COMPILE " " "-I${lib.getDev gmp}/include" \
--prefix NIX_CFLAGS_LINK " " "-L${lib.getLib gmp}/lib"