3
0
Fork 0
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:
Silvan Mosberger 2019-04-28 16:53:00 +02:00 committed by GitHub
commit 3857a8bb25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
''; '';
} }