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

21 lines
526 B
Nix
Raw Normal View History

2014-12-13 01:20:04 +01:00
{ stdenv, fetchurl, xz }:
2014-12-13 01:20:04 +01:00
stdenv.mkDerivation rec {
name = "autoconf-archive-${version}";
version = "2016.09.16";
2014-12-13 01:20:04 +01:00
src = fetchurl {
url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
sha256 = "10mxz9hfnfz66m1l9s28sbyfb9a04akz92wkyv9blhpq6p9fzwp8";
2014-12-13 01:20:04 +01:00
};
2014-12-13 01:20:04 +01:00
buildInputs = [ xz ];
meta = with stdenv.lib; {
2015-04-28 10:54:58 +02:00
description = "Archive of autoconf m4 macros";
2014-12-13 01:20:04 +01:00
homepage = http://www.gnu.org/software/autoconf-archive/;
license = licenses.gpl3;
platforms = platforms.unix;
2014-12-13 01:20:04 +01:00
};
}