3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
14 lines
283 B
Nix
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];
|
|
}
|