mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 12:02:47 +00:00
0498ccd076
HTTP -> HTTPS for : - http://gnu.org/ - http://www.gnu.org/ - http://elpa.gnu.org/ - http://lists.gnu.org/ - http://gcc.gnu.org/ - http://ftp.gnu.org/ (except in fetchurl mirrors) - http://bugs.gnu.org/
21 lines
527 B
Nix
21 lines
527 B
Nix
{ stdenv, fetchurl, xz }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "autoconf-archive-${version}";
|
|
version = "2018.03.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz";
|
|
sha256 = "0ng1lvpijf3kv7w7nb1shqs23vp0398yicyvkf9lsk56kw6zjxb1";
|
|
};
|
|
|
|
buildInputs = [ xz ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Archive of autoconf m4 macros";
|
|
homepage = https://www.gnu.org/software/autoconf-archive/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|