1 { lib, stdenv, fetchurl, xz }:
3 stdenv.mkDerivation rec {
4 pname = "autoconf-archive";
5 version = "2023.02.20";
8 url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
9 hash = "sha256-cdQEhHmuKPH1eUYZw9ct+cAd9JscYo74X943WW3DGjM=";
13 enableParallelBuilding = true;
18 description = "Archive of autoconf m4 macros";
19 homepage = "https://www.gnu.org/software/autoconf-archive/";
20 license = licenses.gpl3;
21 platforms = platforms.unix;