new versions of various very important tools to keep the buildfarm busy.

svn path=/nixpkgs/trunk/; revision=7485
This commit is contained in:
Armijn Hemel
2006-12-25 23:28:35 +00:00
parent d2d3dc33dd
commit 7e41b751cb
7 changed files with 19 additions and 19 deletions

View File

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

View File

@@ -1,10 +1,10 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "readline-5.1";
name = "readline-5.2";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/readline-5.1.tar.gz;
md5 = "7ee5a692db88b30ca48927a13fd60e46";
url = ftp://ftp.nluug.nl/pub/gnu/readline/readline-5.2.tar.gz;
md5 = "e39331f32ad14009b9ff49cc10c5e751";
};
propagatedBuildInputs = [ncurses];
}