mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
27 lines
555 B
Nix
27 lines
555 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
symlinkJoin,
|
|
makeWrapper,
|
|
idris-no-deps,
|
|
gmp,
|
|
}:
|
|
|
|
symlinkJoin {
|
|
inherit (idris-no-deps)
|
|
pname
|
|
version
|
|
src
|
|
meta
|
|
;
|
|
paths = [ idris-no-deps ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
postBuild = ''
|
|
wrapProgram $out/bin/idris \
|
|
--run 'export IDRIS_CC=''${IDRIS_CC:-${stdenv.cc}/bin/cc}' \
|
|
--set 'NIX_CC_WRAPPER_TARGET_HOST_${stdenv.cc.suffixSalt}' 1 \
|
|
--prefix NIX_CFLAGS_COMPILE " " "-I${lib.getDev gmp}/include" \
|
|
--prefix NIX_CFLAGS_LINK " " "-L${lib.getLib gmp}/lib"
|
|
'';
|
|
}
|