3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/autoconf-archive/default.nix

21 lines
516 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, xz }:
2014-12-13 00:20:04 +00:00
stdenv.mkDerivation rec {
pname = "autoconf-archive";
version = "2021.02.19";
2014-12-13 00:20:04 +00:00
src = fetchurl {
url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
sha256 = "sha256-6KbrnSjdy6j/7z+iEWUyOem/I5q6agGmt8/Hzq7GnL0=";
2014-12-13 00:20:04 +00:00
};
2014-12-13 00:20:04 +00:00
buildInputs = [ xz ];
meta = with lib; {
2015-04-28 09:54:58 +01:00
description = "Archive of autoconf m4 macros";
homepage = "https://www.gnu.org/software/autoconf-archive/";
2014-12-13 00:20:04 +00:00
license = licenses.gpl3;
platforms = platforms.unix;
2014-12-13 00:20:04 +00:00
};
}