Remove unused file

This commit is contained in:
Eelco Dolstra 2015-03-23 11:59:51 +01:00
parent 8d685306c5
commit 8470b03db2
2 changed files with 0 additions and 17 deletions

View File

@ -1,9 +0,0 @@
''
dontFixLibtool=1
stripAllFlags=" " # the Darwin "strip" command doesn't know "-s"
xargsFlags=" "
export MACOSX_DEPLOYMENT_TARGET=10.9
export SDKROOT=$(/usr/bin/xcrun --sdk macosx10.9 --show-sdk-path 2> /dev/null || true)
export NIX_CFLAGS_COMPILE+=" --sysroot=/var/empty -idirafter $SDKROOT/usr/include -F$SDKROOT/System/Library/Frameworks -Wno-multichar -Wno-deprecated-declarations"
export NIX_LDFLAGS_AFTER+=" -L$SDKROOT/usr/lib"
''

View File

@ -18,13 +18,6 @@ rec {
export NIX_ENFORCE_PURITY=
'';
prehookDarwin = ''
${prehookBase}
export NIX_DONT_SET_RPATH=1
export NIX_NO_SELF_RPATH=1
${import ../darwin/prehook.nix}
'';
prehookFreeBSD = ''
${prehookBase}
@ -77,7 +70,6 @@ rec {
import ../generic {
preHook =
if system == "x86_64-darwin" then prehookDarwin else
if system == "i686-freebsd" then prehookFreeBSD else
if system == "x86_64-freebsd" then prehookFreeBSD else
if system == "i686-openbsd" then prehookOpenBSD else