biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / autoconf-archive / default.nix
blob3fbfabcee265fa05fa9001af2bac2136ef6599ab
1 { lib, stdenv, fetchurl, xz }:
3 stdenv.mkDerivation rec {
4   pname = "autoconf-archive";
5   version = "2023.02.20";
7   src = fetchurl {
8     url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
9     hash = "sha256-cdQEhHmuKPH1eUYZw9ct+cAd9JscYo74X943WW3DGjM=";
10   };
12   strictDeps = true;
13   enableParallelBuilding = true;
15   buildInputs = [ xz ];
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   };