forked from mirrors/nixpkgs
Merge pull request #58319 from Infinisil/fix-idris-gmp
idrisPackages: Fix linking to gmp library and cc
This commit is contained in:
commit
3857a8bb25
|
@ -1,4 +1,4 @@
|
||||||
{ lib, symlinkJoin, makeWrapper, idris-no-deps, gcc, gmp }:
|
{ stdenv, lib, symlinkJoin, makeWrapper, idris-no-deps, gmp }:
|
||||||
|
|
||||||
symlinkJoin {
|
symlinkJoin {
|
||||||
inherit (idris-no-deps) name src meta;
|
inherit (idris-no-deps) name src meta;
|
||||||
|
@ -6,7 +6,9 @@ symlinkJoin {
|
||||||
buildInputs = [ makeWrapper ];
|
buildInputs = [ makeWrapper ];
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
wrapProgram $out/bin/idris \
|
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}' \
|
||||||
--suffix LIBRARY_PATH : ${lib.makeLibraryPath [ gmp ]}
|
--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