* Reduced the size of glibc from 130 to 50 MB.

* Adapted some more packages to use stdenv, "fixed" ld.so problems.
* Added a package for libxslt.

svn path=/nixpkgs/trunk/; revision=204
This commit is contained in:
Eelco Dolstra
2003-07-25 14:59:22 +00:00
parent 1dda526c66
commit 7ec0df788f
16 changed files with 70 additions and 27 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
#! /bin/sh
export PATH=/bin:/usr/bin
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd libxml2-* || exit 1
./configure --prefix=$out || exit 1
LDFLAGS=-Wl,-S ./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
+2 -1
View File
@@ -1,11 +1,12 @@
Package(
[ ("name", "libxml2-2.5.8")
, ("build", Relative("libxml2/libxml2-build.sh"))
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://fr.rpmfind.net/pub/libxml/libxml2-2.5.8.tar.gz")
, ("md5", "b2caf6efe9ff9c4d2c175fb0689bd20e")
]))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
]
)