* Added MySQL 4.1.9.

svn path=/nixpkgs/trunk/; revision=2082
This commit is contained in:
Eelco Dolstra
2005-01-21 19:25:57 +00:00
parent e03984abda
commit f1ae49c01b
2 changed files with 18 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
{stdenv, fetchurl, ps, ncurses, zlib ? null, perl}:
# Note: zlib is not required; MySQL can use an internal zlib.
stdenv.mkDerivation {
name = "mysql-4.1.9";
# builder = ./builder.sh;
src = fetchurl {
url = http://mirrors.sunsite.dk/mysql/Downloads/MySQL-4.1/mysql-4.1.9.tar.gz;
md5 = "7bc44befe155d619c4e4705f68874278";
};
buildInputs = [ps ncurses zlib perl];
}