summary refs log tree commit diff
path: root/pkgs/development/interpreters/clisp
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-03-12 23:02:28 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-03-12 23:07:55 +0100
commit848423f2234fc3e008799ca9475d7a164164cac8 (patch)
tree63e00717ef8cf0d24a6a2cd88e8e251fefc64fe0 /pkgs/development/interpreters/clisp
parent39cd6ccb8e557ea7697c932f2537ac5979f4dc3d (diff)
downloadnixlib-848423f2234fc3e008799ca9475d7a164164cac8.tar
nixlib-848423f2234fc3e008799ca9475d7a164164cac8.tar.gz
nixlib-848423f2234fc3e008799ca9475d7a164164cac8.tar.bz2
nixlib-848423f2234fc3e008799ca9475d7a164164cac8.tar.lz
nixlib-848423f2234fc3e008799ca9475d7a164164cac8.tar.xz
nixlib-848423f2234fc3e008799ca9475d7a164164cac8.tar.zst
nixlib-848423f2234fc3e008799ca9475d7a164164cac8.zip
clisp-tip: make the build more reliable
Hydra shows it sometimes fails without autoconf:
http://hydra.nixos.org/job/nixos/trunk-combined/nixpkgs.clisp-tip.x86_64-linux
I can't say I understand why this happened.
Diffstat (limited to 'pkgs/development/interpreters/clisp')
-rw-r--r--pkgs/development/interpreters/clisp/hg.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/clisp/hg.nix b/pkgs/development/interpreters/clisp/hg.nix
index b4930e7d57d6..58bb52397bf7 100644
--- a/pkgs/development/interpreters/clisp/hg.nix
+++ b/pkgs/development/interpreters/clisp/hg.nix
@@ -5,8 +5,7 @@
 # - full: contains base plus modules in withModules
 { stdenv, fetchhg, libsigsegv, gettext, ncurses, readline, libX11
 , libXau, libXt, pcre, zlib, libXpm, xproto, libXext, xextproto
-, libffi
-, libffcall
+, libffi, libffcall, automake
 , coreutils
 # build options
 , threadSupport ? (stdenv.isi686 || stdenv.isx86_64)
@@ -37,6 +36,7 @@ stdenv.mkDerivation rec {
 
   ffcallAvailable = stdenv.isLinux && (libffcall != null);
 
+  nativeBuildInputs = [ automake ]; # sometimes fails otherwise
   buildInputs = [libsigsegv]
   ++ stdenv.lib.optional (gettext != null) gettext
   ++ stdenv.lib.optional (ncurses != null) ncurses