Commit e5a16fa9 authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

_0verkill: pin to autoconf-2.69

`autoconf-2.72` tweaked `AC_CHECK_LIB` macro a bit and exposed missing
quoting in `configure.in` of `0verkill` as:

    0verkill-unstable> ./configure: line 4182: syntax error near unexpected token `newline'
    0verkill-unstable> ./configure: line 4182: `yes:'

`configure.in` requires a bit of patching. Let's pin it to older `2.69`
to allow `autoconf` upgrade to 2.72.
parent 42e82652
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib
, gccStdenv
, fetchFromGitHub
, autoreconfHook
, autoreconfHook269
, xorgproto
, libX11
, libXpm
@@ -18,7 +18,7 @@ gccStdenv.mkDerivation rec {
    sha256 = "WO7PN192HhcDl6iHIbVbH7MVMi1Tl2KyQbDa9DWRO6M=";
  };

  nativeBuildInputs = [ autoreconfHook ];
  nativeBuildInputs = [ autoreconfHook269 ];
  buildInputs = [ libX11 xorgproto libXpm ];

  configureFlags = [ "--with-x" ];