_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.
This commit is contained in:
Sergei Trofimovich 2023-12-24 11:48:35 +00:00
parent 42e8265222
commit e5a16fa98b
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ 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" ];