releaseTools.sourceTarball: Make the bootstrap build inputs native.
svn path=/nixpkgs/trunk/; revision=21955
This commit is contained in:
parent
e1f009b9df
commit
0146e9b7ab
@ -4,6 +4,7 @@
|
||||
|
||||
{ officialRelease ? false
|
||||
, buildInputs ? []
|
||||
, buildNativeInputs ? []
|
||||
, name ? "source-tarball"
|
||||
, version ? "0"
|
||||
, src, stdenv, autoconf, automake, libtool
|
||||
@ -77,7 +78,7 @@ stdenv.mkDerivation (
|
||||
{
|
||||
name = name + "-" + version + versionSuffix;
|
||||
|
||||
buildInputs = buildInputs ++ bootstrapBuildInputs;
|
||||
buildNativeInputs = bootstrapBuildInputs ++ buildNativeInputs;
|
||||
|
||||
postHook = ''
|
||||
ensureDir $out/nix-support
|
||||
|
Loading…
Reference in New Issue
Block a user