2022-04-26 07:55:14 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
|
|
|
|
, jre
|
|
|
|
|
, makeWrapper
|
|
|
|
|
, mysqlSupport ? true
|
|
|
|
|
, mysql_jdbc
|
|
|
|
|
, postgresqlSupport ? true
|
|
|
|
|
, postgresql_jdbc
|
|
|
|
|
, redshiftSupport ? true
|
|
|
|
|
, redshift_jdbc
|
|
|
|
|
, liquibase_redshift_extension
|
|
|
|
|
}:
|
2016-12-16 11:19:59 +00:00
|
|
|
|
|
|
|
|
|
let
|
2020-12-04 18:02:41 +00:00
|
|
|
|
extraJars =
|
|
|
|
|
lib.optional mysqlSupport mysql_jdbc
|
2022-04-26 07:55:14 +00:00
|
|
|
|
++ lib.optional postgresqlSupport postgresql_jdbc
|
|
|
|
|
++ lib.optionals redshiftSupport [
|
|
|
|
|
redshift_jdbc
|
|
|
|
|
liquibase_redshift_extension
|
|
|
|
|
];
|
2016-12-16 11:19:59 +00:00
|
|
|
|
in
|
2016-04-05 13:36:56 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "liquibase";
|
2022-03-18 22:28:40 +00:00
|
|
|
|
version = "4.9.0";
|
2016-04-05 13:36:56 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-26 14:42:27 +00:00
|
|
|
|
url = "https://github.com/liquibase/liquibase/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2022-03-18 22:28:40 +00:00
|
|
|
|
sha256 = "sha256-1InRJzHqikm6Jd7z54TW6JFn3FO0LtStehWNaC+rdw8=";
|
2016-04-05 13:36:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
buildInputs = [ jre ];
|
2016-04-05 13:36:56 +00:00
|
|
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
|
tar xfz ${src}
|
|
|
|
|
'';
|
|
|
|
|
|
2016-12-16 11:19:59 +00:00
|
|
|
|
installPhase =
|
|
|
|
|
let addJars = dir: ''
|
|
|
|
|
for jar in ${dir}/*.jar; do
|
|
|
|
|
CP="\$CP":"\$jar"
|
|
|
|
|
done
|
|
|
|
|
'';
|
2022-04-26 07:55:14 +00:00
|
|
|
|
in
|
|
|
|
|
''
|
2020-01-26 14:42:27 +00:00
|
|
|
|
mkdir -p $out
|
|
|
|
|
mv ./{lib,licenses,liquibase.jar} $out/
|
2016-12-16 11:19:59 +00:00
|
|
|
|
|
2019-08-15 12:41:18 +00:00
|
|
|
|
mkdir -p $out/share/doc/${pname}-${version}
|
2020-01-26 14:42:27 +00:00
|
|
|
|
mv LICENSE.txt \
|
|
|
|
|
README.txt \
|
|
|
|
|
ABOUT.txt \
|
|
|
|
|
changelog.txt \
|
2019-08-15 12:41:18 +00:00
|
|
|
|
$out/share/doc/${pname}-${version}
|
2017-08-16 13:30:44 +00:00
|
|
|
|
|
2020-01-26 14:42:27 +00:00
|
|
|
|
mkdir -p $out/bin
|
2016-12-16 11:19:59 +00:00
|
|
|
|
# there’s a lot of escaping, but I’m not sure how to improve that
|
|
|
|
|
cat > $out/bin/liquibase <<EOF
|
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
# taken from the executable script in the source
|
|
|
|
|
CP="$out/liquibase.jar"
|
|
|
|
|
${addJars "$out/lib"}
|
2021-01-21 22:03:48 +00:00
|
|
|
|
${lib.concatStringsSep "\n" (map (p: addJars "${p}/share/java") extraJars)}
|
2016-12-16 11:19:59 +00:00
|
|
|
|
|
2021-01-21 22:03:48 +00:00
|
|
|
|
${lib.getBin jre}/bin/java -cp "\$CP" \$JAVA_OPTS \
|
2022-04-04 15:44:55 +00:00
|
|
|
|
liquibase.integration.commandline.LiquibaseCommandLine \''${1+"\$@"}
|
2016-12-16 11:19:59 +00:00
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/liquibase
|
2022-04-26 07:55:14 +00:00
|
|
|
|
'';
|
2016-04-05 13:36:56 +00:00
|
|
|
|
|
2021-01-21 22:03:48 +00:00
|
|
|
|
meta = with lib; {
|
2016-04-05 13:36:56 +00:00
|
|
|
|
description = "Version Control for your database";
|
2020-10-02 07:58:50 +00:00
|
|
|
|
homepage = "https://www.liquibase.org/";
|
2020-01-26 14:42:27 +00:00
|
|
|
|
changelog = "https://raw.githubusercontent.com/liquibase/liquibase/v${version}/changelog.txt";
|
2022-06-02 13:38:41 +00:00
|
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2016-04-05 13:36:56 +00:00
|
|
|
|
license = licenses.asl20;
|
2020-10-08 14:21:19 +00:00
|
|
|
|
maintainers = with maintainers; [ ];
|
2016-08-02 17:50:55 +00:00
|
|
|
|
platforms = with platforms; unix;
|
2016-04-05 13:36:56 +00:00
|
|
|
|
};
|
|
|
|
|
}
|