liquibase: support PostgreSQL JDBC driver
This commit is contained in:
parent
62acc9aa8f
commit
0e4faa73d2
@ -1,8 +1,11 @@
|
|||||||
{ lib, stdenv, fetchurl, jre, makeWrapper
|
{ lib, stdenv, fetchurl, jre, makeWrapper
|
||||||
, mysqlSupport ? true, mysql_jdbc }:
|
, mysqlSupport ? true, mysql_jdbc
|
||||||
|
, postgresqlSupport ? true, postgresql_jdbc }:
|
||||||
|
|
||||||
let
|
let
|
||||||
extraJars = lib.optional mysqlSupport mysql_jdbc;
|
extraJars =
|
||||||
|
lib.optional mysqlSupport mysql_jdbc
|
||||||
|
++ lib.optional postgresqlSupport postgresql_jdbc;
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
Loading…
Reference in New Issue
Block a user