271403c69b
This should make it work on Darwin with clang.
15 lines
503 B
Nix
15 lines
503 B
Nix
{ stdenv, lib, symlinkJoin, makeWrapper, idris-no-deps, gmp }:
|
|
|
|
symlinkJoin {
|
|
inherit (idris-no-deps) name src meta;
|
|
paths = [ idris-no-deps ];
|
|
buildInputs = [ makeWrapper ];
|
|
postBuild = ''
|
|
wrapProgram $out/bin/idris \
|
|
--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"
|
|
'';
|
|
}
|