nixpkgs/pkgs/servers/sql/postgresql/jdbc/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

14 lines
283 B
Nix

{stdenv, fetchurl, ant}:
stdenv.mkDerivation {
name = "postgresql-jdbc-8.0";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/postgresql-jdbc-8.0-311.src.tar.gz;
md5 = "e31b6e68141883e5c89a3a9b0fb95c02";
};
buildInputs = [ant];
}