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.

(cherry picked from commit 848423f)
/cc #23253 and maintainers @7c6f434c, @tohl.
  • Loading branch information
vcunat committed Mar 12, 2017
1 parent 9037001 commit a3939d1
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

1 comment on commit a3939d1

@7c6f434c
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would also like to thank @0xABAB for the summaries of the build problems for ZHF effort.

Please sign in to comment.