2022-04-27 09:35:20 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
2023-07-15 17:15:38 +00:00
|
|
|
|
, gitUpdater
|
2022-04-27 09:35:20 +00:00
|
|
|
|
, jre
|
|
|
|
|
, makeWrapper
|
|
|
|
|
, mysqlSupport ? true
|
|
|
|
|
, mysql_jdbc
|
|
|
|
|
, postgresqlSupport ? true
|
|
|
|
|
, postgresql_jdbc
|
|
|
|
|
, redshiftSupport ? true
|
|
|
|
|
, redshift_jdbc
|
|
|
|
|
, liquibase_redshift_extension
|
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
let
|
2021-02-05 17:12:51 +00:00
|
|
|
|
extraJars =
|
|
|
|
|
lib.optional mysqlSupport mysql_jdbc
|
2022-04-27 09:35:20 +00:00
|
|
|
|
++ lib.optional postgresqlSupport postgresql_jdbc
|
|
|
|
|
++ lib.optionals redshiftSupport [
|
|
|
|
|
redshift_jdbc
|
|
|
|
|
liquibase_redshift_extension
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "liquibase";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
version = "4.23.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/liquibase/liquibase/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
hash = "sha256-mIuHNNo/L5h2RvpTN0jZt6ri+Il0H9aSL4auOjIepjU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
buildInputs = [ jre ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
|
tar xfz ${src}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
|
let addJars = dir: ''
|
|
|
|
|
for jar in ${dir}/*.jar; do
|
|
|
|
|
CP="\$CP":"\$jar"
|
|
|
|
|
done
|
|
|
|
|
'';
|
2022-04-27 09:35:20 +00:00
|
|
|
|
in
|
|
|
|
|
''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
mkdir -p $out
|
2023-07-15 17:15:38 +00:00
|
|
|
|
mv ./{lib,licenses} $out/
|
|
|
|
|
|
|
|
|
|
mkdir -p $out/internal/lib
|
|
|
|
|
mv ./internal/lib/*.jar $out/internal/lib/
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
mkdir -p $out/share/doc/${pname}-${version}
|
|
|
|
|
mv LICENSE.txt \
|
|
|
|
|
README.txt \
|
|
|
|
|
ABOUT.txt \
|
|
|
|
|
changelog.txt \
|
|
|
|
|
$out/share/doc/${pname}-${version}
|
|
|
|
|
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
|
# 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
|
2023-07-15 17:15:38 +00:00
|
|
|
|
CP=""
|
|
|
|
|
${addJars "$out/internal/lib"}
|
2020-04-24 23:36:52 +00:00
|
|
|
|
${addJars "$out/lib"}
|
2023-07-15 17:15:38 +00:00
|
|
|
|
${addJars "$out"}
|
2021-02-05 17:12:51 +00:00
|
|
|
|
${lib.concatStringsSep "\n" (map (p: addJars "${p}/share/java") extraJars)}
|
|
|
|
|
${lib.getBin jre}/bin/java -cp "\$CP" \$JAVA_OPTS \
|
2023-07-15 17:15:38 +00:00
|
|
|
|
liquibase.integration.commandline.LiquibaseCommandLine \''${1+"\$@"}
|
2020-04-24 23:36:52 +00:00
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/liquibase
|
2022-04-27 09:35:20 +00:00
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
|
url = "https://github.com/liquibase/liquibase";
|
|
|
|
|
rev-prefix = "v";
|
|
|
|
|
# The latest versions are in the 4.xx series. I am not sure where
|
|
|
|
|
# 10.10.10 and 5.0.0 came from, though it appears like they are
|
|
|
|
|
# for the commercial product.
|
|
|
|
|
ignoredVersions = "10.10.10|5.0.0|.*-beta.*";
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Version Control for your database";
|
2020-10-07 09:15:18 +00:00
|
|
|
|
homepage = "https://www.liquibase.org/";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
changelog = "https://raw.githubusercontent.com/liquibase/liquibase/v${version}/changelog.txt";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.asl20;
|
2023-07-15 17:15:38 +00:00
|
|
|
|
maintainers = with maintainers; [ jsoo1 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
|
};
|
|
|
|
|
}
|