scsh: move build deps to nativeBuildInputs

Also remove redundant inputs already implied by autoreconfHook.
This commit is contained in:
Joachim Fasting 2016-03-07 18:34:29 +01:00
parent b3592d0b20
commit 098c04683a

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, autoconf, automake, autoreconfHook, scheme48 }:
{ stdenv, fetchgit, autoreconfHook, scheme48 }:
stdenv.mkDerivation {
name = "scsh-0.7pre";
@ -10,7 +10,8 @@ stdenv.mkDerivation {
sha256 = "0fz1r0bmiii9ld91r84dqkqwhnqk0h6drdycq93zcy5ndyn12fqp";
};
buildInputs = [ autoconf automake autoreconfHook scheme48 ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ scheme48 ];
configureFlags = ''--with-scheme48=${scheme48}'';
meta = with stdenv.lib; {