summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/scsh
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-03-07 18:34:29 +0100
committerJoachim Fasting <joachifm@fastmail.fm>2016-03-12 19:06:40 +0100
commit098c04683a613e9ce0121a0269fcec75c1ac6e8c (patch)
treee0396f3c5792f156b0f17e49bcedd5103fb36874 /pkgs/development/interpreters/scsh
parentb3592d0b205af19576bf86371c2cf4847a7d6dbf (diff)
scsh: move build deps to nativeBuildInputs
Also remove redundant inputs already implied by autoreconfHook.
Diffstat (limited to 'pkgs/development/interpreters/scsh')
-rw-r--r--pkgs/development/interpreters/scsh/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/scsh/default.nix b/pkgs/development/interpreters/scsh/default.nix
index ad2bf945f966..91ae67474ff1 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; {