* Some more updates.

svn path=/nixpkgs/trunk/; revision=884
This commit is contained in:
Eelco Dolstra
2004-03-30 17:42:45 +00:00
parent 00004fa6da
commit 24cb251dd0
5 changed files with 7 additions and 30 deletions

View File

@@ -1,12 +0,0 @@
buildinputs="$zlib"
. $stdenv/setup
tar xvfj $src
cd libxml2-*
./configure --prefix=$out
make
make install
strip -S $out/lib/*.a
mkdir $out/nix-support
echo "$zlib" > $out/nix-support/propagated-build-inputs

View File

@@ -3,11 +3,10 @@
assert zlib != null;
stdenv.mkDerivation {
name = "libxml2-2.6.7";
builder = ./builder.sh;
name = "libxml2-2.6.8";
src = fetchurl {
url = ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/libxml2-2.6.7.tar.bz2;
md5 = "bdbef92cbdc5b4bd0365313ba22b75ce";
url = ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/libxml2-2.6.8.tar.bz2;
md5 = "f8a0dc1983f67db388baa0f7c65d2b70";
};
zlib = zlib;
propagatedBuildInputs = [zlib];
}