1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-22 14:47:06 +00:00
nixpkgs/pkgs/development/tools/misc/autoconf-archive/default.nix

20 lines
494 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 = "2016.03.20";
2014-12-13 00:20:04 +00:00
src = fetchurl {
url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
sha256 = "0dz4fnc723jqn3by22ds5fys7g31apzm1r9allldvva0yvzjxyw8";
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 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;
};
}