Skip to content

Commit

Permalink
clisp-tip: make the build more reliable
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vcunat committed Mar 12, 2017
1 parent 39cd6cc commit 848423f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/clisp/hg.nix
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 848423f

Please sign in to comment.