nixpkgs/pkgs/development/tools/misc/libtool/default.nix~
Eelco Visser b4ce40af2b added packages: which, libtool
aggregation in all-packages-generic: autotools
building strategoxt from svn

not complete yet since autconf cannot find libtool


svn path=/nixpkgs/trunk/; revision=596
2003-12-23 20:51:58 +00:00

14 lines
218 B
Nix

{stdenv, fetchurl, m4, perl}:
derivation {
name = "autoconf-2.58";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ;
md5 = "";
};
stdenv = stdenv;
m4 = m4;
perl = perl;
}