Unverified Commit ac12a78d authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

Merge pull request #273677 from philiptaron/clisp

clisp: fix build
parents 3d2227a0 baed8704
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ stdenv.mkDerivation {
  };

  strictDeps = true;
  nativeBuildInputs = lib.optionals stdenv.isDarwin [ autoconf269 automake libtool ];
  nativeBuildInputs = [ autoconf269 automake libtool ];
  buildInputs = [libsigsegv]
  ++ lib.optional (gettext != null) gettext
  ++ lib.optional (ncurses != null) ncurses
@@ -81,6 +81,7 @@ stdenv.mkDerivation {
  postPatch = ''
    sed -e 's@9090@64237@g' -i tests/socket.tst
    sed -i 's@/bin/pwd@${coreutils}&@' src/clisp-link.in
    sed -i 's@1\.16\.2@${automake.version}@' src/aclocal.m4
    find . -type f | xargs sed -e 's/-lICE/-lXau &/' -i
  '';