mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Added autoconf 2.62
svn path=/nixpkgs/trunk/; revision=12117
This commit is contained in:
parent
bba42d4821
commit
71e1e1fe6e
11
pkgs/development/tools/misc/autoconf/2.62.nix
Normal file
11
pkgs/development/tools/misc/autoconf/2.62.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl, m4, perl, lzma}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "autoconf-2.61";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.gnu.org/pub/gnu/autoconf/autoconf-2.62.tar.lzma;
|
||||
sha256 = "0wc70i36cjw5kszvp50d02w8fzh2yxnsa9la6chrf7csb0dnn4jn";
|
||||
};
|
||||
buildInputs = [m4 perl lzma];
|
||||
unpackCmd="lzma -d < $src | tar -x ";
|
||||
}
|
Loading…
Reference in New Issue
Block a user