2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl, xz }:
|
2016-05-03 03:21:44 +01:00
|
|
|
|
2014-12-13 00:20:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "autoconf-archive";
|
2021-02-21 08:52:04 +00:00
|
|
|
version = "2021.02.19";
|
2014-12-13 00:20:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-06-23 22:46:53 +01:00
|
|
|
url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
|
2021-02-21 08:52:04 +00:00
|
|
|
sha256 = "sha256-6KbrnSjdy6j/7z+iEWUyOem/I5q6agGmt8/Hzq7GnL0=";
|
2014-12-13 00:20:04 +00:00
|
|
|
};
|
2016-05-03 03:21:44 +01:00
|
|
|
|
2014-12-13 00:20:04 +00:00
|
|
|
buildInputs = [ xz ];
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "Archive of autoconf m4 macros";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/autoconf-archive/";
|
2014-12-13 00:20:04 +00:00
|
|
|
license = licenses.gpl3;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2014-12-13 00:20:04 +00:00
|
|
|
};
|
|
|
|
}
|