forked from mirrors/nixpkgs
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:
parent
cfd2e6731a
commit
271403c69b
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue