Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, xz }:
2
3stdenv.mkDerivation rec {
4 pname = "autoconf-archive";
5 version = "2022.09.03";
6
7 src = fetchurl {
8 url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
9 sha256 = "sha256-4HRU8A2MrnkHvtQtB0d5iSeAmUdoTZTDcgek1joy9CM=";
10 };
11
12 strictDeps = true;
13 enableParallelBuilding = true;
14
15 buildInputs = [ xz ];
16
17 meta = with lib; {
18 description = "Archive of autoconf m4 macros";
19 homepage = "https://www.gnu.org/software/autoconf-archive/";
20 license = licenses.gpl3;
21 platforms = platforms.unix;
22 };
23}