swift: move most inputs to nativeBuildInputs

This commit is contained in:
Will Dietz 2019-05-03 18:20:10 -05:00 committed by Michael Roitzsch
parent 4ba3923490
commit 80d58e2bf5

View File

@ -135,23 +135,25 @@ in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "swift-${version_friendly}"; name = "swift-${version_friendly}";
buildInputs = devInputs ++ [ nativeBuildInputs = [
autoconf autoconf
automake automake
bash bash
clang
cmake cmake
coreutils coreutils
findutils
gnumake
libtool libtool
makeWrapper
ninja ninja
perl perl
pkgconfig pkgconfig
python python
rsync rsync
which which
findutils ];
makeWrapper buildInputs = devInputs ++ [
gnumake clang
]; ];
# TODO: Revisit what's propagated and how # TODO: Revisit what's propagated and how