From 098c04683a613e9ce0121a0269fcec75c1ac6e8c Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 18:34:29 +0100 Subject: [PATCH] scsh: move build deps to nativeBuildInputs Also remove redundant inputs already implied by autoreconfHook. --- pkgs/development/interpreters/scsh/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/scsh/default.nix b/pkgs/development/interpreters/scsh/default.nix index ad2bf945f96..91ae67474ff 100644 --- a/pkgs/development/interpreters/scsh/default.nix +++ b/pkgs/development/interpreters/scsh/default.nix @@ -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; {