mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
b4ce40af2b
aggregation in all-packages-generic: autotools building strategoxt from svn not complete yet since autconf cannot find libtool svn path=/nixpkgs/trunk/; revision=596
14 lines
299 B
Nix
14 lines
299 B
Nix
{stdenv, fetchurl, m4, perl}:
|
|
derivation {
|
|
name = "autoconf-2.58";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://ftp.gnu.org/gnu/libtool/libtool-1.5.tar.gz;
|
|
md5 = "0e1844f25e2ad74c3715b5776d017545";
|
|
};
|
|
stdenv = stdenv;
|
|
m4 = m4;
|
|
perl = perl;
|
|
}
|