our 7.12.0 was not resolving (thank you glibc!), replaced with statically linked (with uclibc) 7.12.2

svn path=/nixpkgs/branches/nixos-pkgs/; revision=1811
This commit is contained in:
Armijn Hemel 2004-11-29 14:36:29 +00:00
parent aad382248f
commit 1e3c657031
4 changed files with 3 additions and 3 deletions

View File

@ -2,4 +2,4 @@
tar zxvf $src
mkdir $out
cp -a curl-7.12.0/* $out
cp -a curl-7.12.2/* $out

View File

@ -1,7 +1,7 @@
{stdenv}:
stdenv.mkDerivation {
name = "curl-static-7.12.0";
name = "curl-static-7.12.2";
builder = ./builder.sh;
src = ./curl-7.12.0-static.tar.gz;
src = ./curl-7.12.2-static.tar.gz;
}