postgresql-jdbc: 42.2.2 -> 42.2.5

¤ set read-only permissions on .jar at install (mode 0444)
¤ license is now BSD 2-clause
This commit is contained in:
Renaud 2018-10-15 19:34:24 +02:00 committed by GitHub
parent 989123fbec
commit adf9c5080f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,25 +2,25 @@
stdenv.mkDerivation rec {
name = "postgresql-jdbc-${version}";
version = "42.2.2";
version = "42.2.5";
src = fetchMavenArtifact {
artifactId = "postgresql";
groupId = "org.postgresql";
sha256 = "0w7sfi1gmzqhyhr4iq9znv8hff41xwwqcblkyd9ph0m34r0555hr";
sha256 = "1p0cbb7ka41xxipzjy81hmcndkqynav22xyipkg7qdqrqvw4dykz";
inherit version;
};
phases = [ "installPhase" ];
installPhase = ''
install -D $src/share/java/*_postgresql-${version}.jar $out/share/java/postgresql-jdbc.jar
install -m444 -D $src/share/java/*postgresql-${version}.jar $out/share/java/postgresql-jdbc.jar
'';
meta = with stdenv.lib; {
homepage = https://jdbc.postgresql.org/;
description = "JDBC driver for PostgreSQL allowing Java programs to connect to a PostgreSQL database";
license = licenses.bsd3;
license = licenses.bsd2;
platforms = platforms.unix;
};
}