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
This commit is contained in:
Eelco Visser
2003-12-23 20:51:58 +00:00
parent 5e7f5b2ada
commit b4ce40af2b
12 changed files with 134 additions and 2 deletions
@@ -0,0 +1,13 @@
{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;
}