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
|
{ officialRelease ? false
|
||||||
, buildInputs ? []
|
, buildInputs ? []
|
||||||
|
, buildNativeInputs ? []
|
||||||
, name ? "source-tarball"
|
, name ? "source-tarball"
|
||||||
, version ? "0"
|
, version ? "0"
|
||||||
, src, stdenv, autoconf, automake, libtool
|
, src, stdenv, autoconf, automake, libtool
|
||||||
@ -77,7 +78,7 @@ stdenv.mkDerivation (
|
|||||||
{
|
{
|
||||||
name = name + "-" + version + versionSuffix;
|
name = name + "-" + version + versionSuffix;
|
||||||
|
|
||||||
buildInputs = buildInputs ++ bootstrapBuildInputs;
|
buildNativeInputs = bootstrapBuildInputs ++ buildNativeInputs;
|
||||||
|
|
||||||
postHook = ''
|
postHook = ''
|
||||||
ensureDir $out/nix-support
|
ensureDir $out/nix-support
|
||||||
|
Loading…
Reference in New Issue
Block a user