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

View File

@@ -0,0 +1,10 @@
#! /bin/sh
buildinputs="$m4 $perl"
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd libtool-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

View File

@@ -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;
}

View File

@@ -0,0 +1,13 @@
{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;
}