mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
postgresql-jdbc: Update to 9.1-902
This commit is contained in:
parent
20de8c8086
commit
bc8b1376da
@ -1,13 +1,19 @@
|
||||
{stdenv, fetchurl, ant}:
|
||||
{ stdenv, fetchurl, ant }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "postgresql-jdbc-8.2";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-jdbc-9.1-902";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://jdbc.postgresql.org/download/postgresql-jdbc-8.2-504.src.tar.gz;
|
||||
sha256 = "1fkza5j4b9pzm69cw1zv35bqk062d92l4l0zhz3qn0g64r08ccm4";
|
||||
url = "http://jdbc.postgresql.org/download/${name}.src.tar.gz";
|
||||
sha256 = "0sgwbiw5vfxcl0g1yzsndgxdha74cr8ag6y65i0jhgg5g8qc56bz";
|
||||
};
|
||||
|
||||
buildInputs = [ant];
|
||||
|
||||
meta = {
|
||||
homepage = http://jdbc.postgresql.org/;
|
||||
description = "JDBC driver for PostgreSQL allowing Java programs to connect to a PostgreSQL database";
|
||||
license = "bsd";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user