2014-07-01 17:21:32 +02:00
|
|
|
{ stdenv, pkgs, config, lib }:
|
2004-03-11 18:26:14 +01:00
|
|
|
|
2012-01-19 19:25:35 +01:00
|
|
|
import ../generic rec {
|
2012-12-28 16:36:09 +01:00
|
|
|
inherit config;
|
|
|
|
|
2012-01-19 16:56:17 +01:00
|
|
|
preHook =
|
|
|
|
''
|
|
|
|
export NIX_ENFORCE_PURITY=1
|
|
|
|
export NIX_IGNORE_LD_THROUGH_GCC=1
|
2014-07-01 17:21:32 +02:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2014-07-02 19:52:25 +02:00
|
|
|
export NIX_ENFORCE_PURITY=
|
|
|
|
export NIX_DONT_SET_RPATH=1
|
|
|
|
export NIX_NO_SELF_RPATH=1
|
|
|
|
dontFixLibtool=1
|
|
|
|
stripAllFlags=" " # the Darwin "strip" command doesn't know "-s"
|
|
|
|
xargsFlags=" "
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.6
|
2014-07-28 09:14:13 +02:00
|
|
|
export SDKROOT=$(/usr/bin/xcrun --show-sdk-path 2> /dev/null || true)
|
2014-07-28 09:37:23 +02:00
|
|
|
export NIX_CFLAGS_COMPILE+=" --sysroot=/var/empty -idirafter $SDKROOT/usr/include -F$SDKROOT/System/Library/Frameworks -Wno-multichar -Wno-deprecated-declarations"
|
2014-07-24 21:53:46 +02:00
|
|
|
export NIX_LDFLAGS_AFTER+=" -L$SDKROOT/usr/lib"
|
2014-07-01 17:21:32 +02:00
|
|
|
'';
|
2012-01-19 16:56:17 +01:00
|
|
|
|
2006-07-14 10:35:59 +02:00
|
|
|
initialPath = (import ../common-path.nix) {pkgs = pkgs;};
|
2004-03-11 18:26:14 +01:00
|
|
|
|
2009-02-02 16:03:38 +01:00
|
|
|
system = stdenv.system;
|
2004-03-11 18:26:14 +01:00
|
|
|
|
2006-07-14 11:28:09 +02:00
|
|
|
gcc = import ../../build-support/gcc-wrapper {
|
2004-03-11 18:26:14 +01:00
|
|
|
nativeTools = false;
|
2013-02-23 14:59:59 +01:00
|
|
|
nativePrefix = stdenv.lib.optionalString stdenv.isSunOS "/usr";
|
2006-10-24 20:26:23 +02:00
|
|
|
nativeLibc = true;
|
2004-03-11 18:26:14 +01:00
|
|
|
inherit stdenv;
|
2012-12-28 16:41:56 +01:00
|
|
|
binutils =
|
2006-07-15 00:34:24 +02:00
|
|
|
if stdenv.isDarwin then
|
2006-07-14 15:34:39 +02:00
|
|
|
import ../../build-support/native-darwin-cctools-wrapper {inherit stdenv;}
|
2006-07-14 13:59:38 +02:00
|
|
|
else
|
|
|
|
pkgs.binutils;
|
2012-04-23 17:47:37 +02:00
|
|
|
gcc = pkgs.gcc.gcc;
|
2009-11-20 17:56:11 +01:00
|
|
|
coreutils = pkgs.coreutils;
|
2006-10-17 16:06:18 +02:00
|
|
|
shell = pkgs.bash + "/bin/sh";
|
2004-03-11 18:26:14 +01:00
|
|
|
};
|
|
|
|
|
2006-10-17 16:06:18 +02:00
|
|
|
shell = pkgs.bash + "/bin/sh";
|
2006-05-31 17:08:25 +02:00
|
|
|
|
2008-06-18 17:09:13 +02:00
|
|
|
fetchurlBoot = stdenv.fetchurlBoot;
|
2012-01-19 19:25:35 +01:00
|
|
|
|
|
|
|
overrides = pkgs_: {
|
|
|
|
inherit gcc;
|
|
|
|
inherit (gcc) binutils;
|
2012-12-28 16:41:56 +01:00
|
|
|
inherit (pkgs)
|
2012-01-19 19:25:35 +01:00
|
|
|
gzip bzip2 xz bash coreutils diffutils findutils gawk
|
|
|
|
gnumake gnused gnutar gnugrep gnupatch perl;
|
|
|
|
};
|
2003-11-03 11:22:00 +01:00
|
|
|
}
|