mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
releaseTools.sourceTarball: Fix regression introduced in r21955.
svn path=/nixpkgs/trunk/; revision=21959
This commit is contained in:
parent
a51bbc1992
commit
e436eb4915
|
@ -78,7 +78,7 @@ stdenv.mkDerivation (
|
|||
{
|
||||
name = name + "-" + version + versionSuffix;
|
||||
|
||||
buildNativeInputs = bootstrapBuildInputs ++ buildNativeInputs;
|
||||
buildNativeInputs = buildNativeInputs ++ bootstrapBuildInputs;
|
||||
|
||||
postHook = ''
|
||||
ensureDir $out/nix-support
|
||||
|
|
Loading…
Reference in a new issue