* For "nix-build --run-env" it's desirable that $stdenv/setup (and by
extension postHook) does nothing else than set up the environment. It shouldn't touch $out because there may not be a $out. So move the "imperative" bits of postHook into a separate phase. svn path=/nixpkgs/trunk/; revision=33249
This commit is contained in:
parent
06d28ca8f1
commit
ebd19ec705
@ -13,6 +13,7 @@
|
|||||||
, src, stdenv
|
, src, stdenv
|
||||||
, name ? if doCoverageAnalysis then "nix-coverage" else "nix-build"
|
, name ? if doCoverageAnalysis then "nix-coverage" else "nix-build"
|
||||||
, failureHook ? null
|
, failureHook ? null
|
||||||
|
, prePhases ? []
|
||||||
, postPhases ? []
|
, postPhases ? []
|
||||||
, ... } @ args:
|
, ... } @ args:
|
||||||
|
|
||||||
@ -56,13 +57,6 @@ stdenv.mkDerivation (
|
|||||||
name = name + (if src ? version then "-" + src.version else "");
|
name = name + (if src ? version then "-" + src.version else "");
|
||||||
|
|
||||||
postHook = ''
|
postHook = ''
|
||||||
mkdir -p $out/nix-support
|
|
||||||
echo "$system" > $out/nix-support/system
|
|
||||||
|
|
||||||
if test -z "${toString doCoverageAnalysis}"; then
|
|
||||||
echo "nix-build none $out" >> $out/nix-support/hydra-build-products
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If `src' is the result of a call to `makeSourceTarball', then it
|
# If `src' is the result of a call to `makeSourceTarball', then it
|
||||||
# has a subdirectory containing the actual tarball(s). If there are
|
# has a subdirectory containing the actual tarball(s). If there are
|
||||||
# multiple tarballs, just pick the first one.
|
# multiple tarballs, just pick the first one.
|
||||||
@ -77,9 +71,18 @@ stdenv.mkDerivation (
|
|||||||
export CFLAGS="-O0"
|
export CFLAGS="-O0"
|
||||||
export CXXFLAGS="-O0"
|
export CXXFLAGS="-O0"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
''; # */
|
''; # */
|
||||||
|
|
||||||
|
initPhase = ''
|
||||||
|
mkdir -p $out/nix-support
|
||||||
|
echo "$system" > $out/nix-support/system
|
||||||
|
|
||||||
|
if test -z "${toString doCoverageAnalysis}"; then
|
||||||
|
echo "nix-build none $out" >> $out/nix-support/hydra-build-products
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
|
||||||
|
prePhases = ["initPhase"] ++ prePhases;
|
||||||
|
|
||||||
# In the report phase, create a coverage analysis report.
|
# In the report phase, create a coverage analysis report.
|
||||||
coverageReportPhase = if doCoverageAnalysis then ''
|
coverageReportPhase = if doCoverageAnalysis then ''
|
||||||
|
Loading…
Reference in New Issue
Block a user