2021-02-05 17:12:51 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, jre, makeWrapper
|
|
|
|
|
, mysqlSupport ? true, mysql_jdbc
|
|
|
|
|
, postgresqlSupport ? true, postgresql_jdbc }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
let
|
2021-02-05 17:12:51 +00:00
|
|
|
|
extraJars =
|
|
|
|
|
lib.optional mysqlSupport mysql_jdbc
|
|
|
|
|
++ lib.optional postgresqlSupport postgresql_jdbc;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "liquibase";
|
2022-02-21 08:47:16 +00:00
|
|
|
|
version = "4.7.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/liquibase/liquibase/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2022-02-21 08:47:16 +00:00
|
|
|
|
sha256 = "sha256-cHMsBkP5R7rxRZgzzKaHJrFq36xC9PBuzTzc1kHKc4U=";
|
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
|
|
|
|
|
'';
|
|
|
|
|
in ''
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
mv ./{lib,licenses,liquibase.jar} $out/
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
CP="$out/liquibase.jar"
|
|
|
|
|
${addJars "$out/lib"}
|
2021-02-05 17:12:51 +00:00
|
|
|
|
${lib.concatStringsSep "\n" (map (p: addJars "${p}/share/java") extraJars)}
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
${lib.getBin jre}/bin/java -cp "\$CP" \$JAVA_OPTS \
|
2020-04-24 23:36:52 +00:00
|
|
|
|
liquibase.integration.commandline.Main \''${1+"\$@"}
|
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/liquibase
|
|
|
|
|
'';
|
|
|
|
|
|
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";
|
|
|
|
|
license = licenses.asl20;
|
2020-10-11 12:50:04 +00:00
|
|
|
|
maintainers = with maintainers; [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
|
};
|
|
|
|
|
}
|