Revert "releaseTools.sourceTarball: Make the bootstrap build inputs native."

This reverts commit 84b521c23b57108fc63731de7723885d68a92b08.
Reverting "releaseTools.sourceTarball: Fix regression introduced in r21955."
Reverting "releaseTools.sourceTarball: Make the bootstrap build inputs native."

svn path=/nixpkgs/trunk/; revision=21962
This commit is contained in:
Ludovic Courtès 2010-05-25 08:24:50 +00:00
parent 2f1b9ce8f9
commit 9f50c154c3

View File

@ -4,7 +4,6 @@
{ officialRelease ? false
, buildInputs ? []
, buildNativeInputs ? []
, name ? "source-tarball"
, version ? "0"
, src, stdenv, autoconf, automake, libtool
@ -78,8 +77,8 @@ stdenv.mkDerivation (
{
name = name + "-" + version + versionSuffix;
buildNativeInputs = buildNativeInputs ++ bootstrapBuildInputs;
buildInputs = buildInputs ++ bootstrapBuildInputs;
postHook = ''
ensureDir $out/nix-support
'';