depot/third_party/nixpkgs/pkgs/development/tools/misc/autoconf-archive/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

23 lines
571 B
Nix

{ lib, stdenv, fetchurl, xz }:
stdenv.mkDerivation rec {
pname = "autoconf-archive";
version = "2021.02.19";
src = fetchurl {
url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
sha256 = "sha256-6KbrnSjdy6j/7z+iEWUyOem/I5q6agGmt8/Hzq7GnL0=";
};
strictDeps = true;
enableParallelBuilding = true;
buildInputs = [ xz ];
meta = with lib; {
description = "Archive of autoconf m4 macros";
homepage = "https://www.gnu.org/software/autoconf-archive/";
license = licenses.gpl3;
platforms = platforms.unix;
};
}