1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/development/tools/misc/autoconf-archive/default.nix

18 lines
512 B
Nix
Raw Normal View History

2014-12-13 00:20:04 +00:00
{ stdenv, fetchurl, xz }:
stdenv.mkDerivation rec {
name = "autoconf-archive-${version}";
version = "2014.10.15";
src = fetchurl {
url = "http://ftp.heanet.ie/mirrors/gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
sha256 = "198yrdf8bhrpl7insdyzn65zd60qll0gr9vpz7fl7dpcj78yc7gy";
};
buildInputs = [ xz ];
meta = with stdenv.lib; {
2015-04-28 09:54:58 +01:00
description = "Archive of autoconf m4 macros";
2014-12-13 00:20:04 +00:00
homepage = http://www.gnu.org/software/autoconf-archive/;
license = licenses.gpl3;
};
}