* Latest versions.

svn path=/nixpkgs/trunk/; revision=5482
This commit is contained in:
Eelco Dolstra 2006-06-21 15:54:46 +00:00
parent 9af9b95298
commit ffb94e0690
3 changed files with 9 additions and 9 deletions

View File

@ -1,10 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ncurses-5.4";
name = "ncurses-5.5";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/ncurses-5.4.tar.gz;
md5 = "069c8880072060373290a4fefff43520";
url = http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.5.tar.gz;
md5 = "e73c1ac10b4bfc46db43b2ddfd6244ef";
};
}

View File

@ -1,9 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "pcre-6.4";
name = "pcre-6.6";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/pcre-6.4.tar.bz2;
md5 = "c5c73e8767479e8a7751324b0aa32291";
url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-6.6.tar.bz2;
md5 = "61067f730c46cf6bdd0f8efe3f4f51b6";
};
}

View File

@ -1,10 +1,10 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "readline-5.0";
name = "readline-5.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/readline-5.0.tar.gz;
md5 = "9a39d15f1ed592883f8c6671e8c13120";
url = ftp://ftp.gnu.org/gnu/readline/readline-5.1.tar.gz;
md5 = "7ee5a692db88b30ca48927a13fd60e46";
};
inherit ncurses;
buildInputs = [ncurses];