Merge remote-tracking branch 'origin/master' into staging

Conflicts:
	pkgs/development/libraries/boost/generic.nix
This commit is contained in:
Eelco Dolstra
2014-11-11 23:48:08 +01:00
307 changed files with 605 additions and 4972 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames, makeSetupHook
{ stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames
, toolset ? if stdenv.isDarwin then "clang" else null
, enableRelease ? true
, enableDebug ? false
@@ -90,7 +90,7 @@ let
# Create a derivation which encompasses everything, making buildInputs nicer
mkdir -p $out/nix-support
echo "${stripHeaderPathHook} $dev $lib" > $out/nix-support/propagated-native-build-inputs
echo "$dev $lib" > $out/nix-support/propagated-native-build-inputs
'';
commonConfigureFlags = [
@@ -98,7 +98,13 @@ let
"--libdir=$(lib)/lib"
];
stripHeaderPathHook = makeSetupHook { } ./strip-header-path.sh;
fixup = ''
# Make boost header paths relative so that they are not runtime dependencies
(
cd "$dev"
find include \( -name '*.hpp' -or -name '*.h' \) -exec sed '1i#line 1 "{}"' -i '{}' \;
)
'';
in
@@ -142,6 +148,8 @@ stdenv.mkDerivation {
installPhase = installer nativeB2Args;
postFixup = fixup;
outputs = [ "out" "dev" "lib" ];
crossAttrs = rec {
@@ -160,5 +168,6 @@ stdenv.mkDerivation {
'';
buildPhase = builder crossB2Args;
installPhase = installer crossB2Args;
postFixup = fixup;
};
}

View File

@@ -1,12 +0,0 @@
postPhases+=" boostHeaderStripPhase"
boostHeaderStripPhase() {
runHook preBoostHeaderStrip
[ -z "$outputs" ] && outputs=out
for output in $outputs; do
eval "path=\$$outputs"
[ -d "$path/bin" ] || continue
find "$path/bin" -type f -exec sed -i "s,[^/]*\(-boost-[0-9.]*-dev\),xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\1,g" {} \;
done
runHook postBoostHeaderStrip
}