about summary refs log tree commit diff
path: root/pkgs/servers/sql/mysql/default.nix
blob: a74b16b3836bd52279c8798c38af0b70ee101691 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, ps, ncurses, zlib ? null, perl}:

# Note: zlib is not required; MySQL can use an internal zlib.

stdenv.mkDerivation {
  name = "mysql-4.1.18";

  src = fetchurl {
    url = http://ftp.snt.utwente.nl/pub/software/mysql/Downloads/MySQL-4.1/mysql-4.1.18.tar.gz;
    md5 = "a2db4edb3e1e3b8e0f8c2242225ea513";
  };

  buildInputs = [ps ncurses zlib perl];
}