autoconf: 2.71 -> 2.72

Changes: https://lists.gnu.org/archive/html/info-gnu/2023-12/msg00002.html
This commit is contained in:
Sergei Trofimovich 2022-09-09 11:40:22 +01:00
parent 7684034cd9
commit 62abc91b9f

View File

@ -7,18 +7,13 @@
stdenv.mkDerivation rec {
pname = "autoconf";
version = "2.71";
version = "2.72";
outputs = [ "out" "doc" ];
src = fetchurl {
url = "mirror://gnu/autoconf/autoconf-${version}.tar.xz";
sha256 = "197sl23irn6s9pd54rxj5vcp5y8dv65jb9yfqgr2g56cxg7q6k7i";
hash = "sha256-uohcExlXjWyU1G6bDc60AUyq/iSQ5Deg28o/JwoiP1o=";
};
patches = [
# fix stale autom4te cache race condition:
# https://savannah.gnu.org/support/index.php?110521
./2.71-fix-race.patch
];
strictDeps = true;
nativeBuildInputs = [ m4 perl texinfo ];