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
+9
View File
@@ -0,0 +1,9 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd which-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
+9
View File
@@ -0,0 +1,9 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd sed-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
+13
View File
@@ -0,0 +1,13 @@
{stdenv, fetchurl}: derivation {
name = "which-2.16";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.gnu.org/gnu/which/which-2.16.tar.gz;
md5 = "830b83af48347a9a3520f561e47cbc9b";
};
stdenv = stdenv;
}