From e5a16fa98b4ae98b8137c92bdcad9b269a95c814 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 24 Dec 2023 11:48:35 +0000 Subject: [PATCH] _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. --- pkgs/games/0verkill/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/0verkill/default.nix b/pkgs/games/0verkill/default.nix index 2c09e5c1eb6f..22ef6c6b0cc4 100644 --- a/pkgs/games/0verkill/default.nix +++ b/pkgs/games/0verkill/default.nix @@ -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" ];