3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
19 lines
399 B
Nix
19 lines
399 B
Nix
{stdenv, fetchurl, zlib, ncurses, readline}:
|
|
|
|
assert zlib != null;
|
|
assert ncurses != null;
|
|
assert readline != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "postgresql-8.0.6";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/postgresql-8.0.6.tar.bz2;
|
|
md5 = "f3b27b8171267f9a87592f931c09f0ee";
|
|
};
|
|
|
|
inherit readline;
|
|
buildInputs = [zlib ncurses readline];
|
|
}
|