nixpkgs/pkgs/development/tools/misc/autoconf-archive/default.nix

21 lines
527 B
Nix
Raw Normal View History

2014-12-13 00:20:04 +00:00
{ stdenv, fetchurl, xz }:
2014-12-13 00:20:04 +00:00
stdenv.mkDerivation rec {
name = "autoconf-archive-${version}";
version = "2019.01.06";
2014-12-13 00:20:04 +00:00
src = fetchurl {
url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
sha256 = "0gqya7nf4j5k98dkky0c3bnr0paciya91vkqazg7knlq621mq68p";
2014-12-13 00:20:04 +00:00
};
2014-12-13 00:20:04 +00:00
buildInputs = [ xz ];
meta = with stdenv.lib; {
2015-04-28 08:54:58 +00: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
};
}