2018-07-21 00:44:44 +00:00
|
|
|
|
{ stdenv, fetchurl, jre, makeWrapper
|
2016-12-16 11:19:59 +00:00
|
|
|
|
, mysqlSupport ? true, mysql_jdbc ? null }:
|
|
|
|
|
|
|
|
|
|
assert mysqlSupport -> mysql_jdbc != null;
|
|
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
let
|
|
|
|
|
extraJars = optional mysqlSupport mysql_jdbc;
|
|
|
|
|
in
|
2016-04-05 13:36:56 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "liquibase";
|
2020-08-14 19:45:58 +00:00
|
|
|
|
version = "4.0.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";
|
2020-08-14 19:45:58 +00:00
|
|
|
|
sha256 = "06wpvqyv7w749l3ndvzg1p774rv1apbmbpwbdlad57pih4nqa7mm";
|
2016-04-05 13:36:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [ jre makeWrapper ];
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
'';
|
|
|
|
|
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"}
|
|
|
|
|
${concatStringsSep "\n" (map (p: addJars "${p}/share/java") extraJars)}
|
|
|
|
|
|
|
|
|
|
${getBin jre}/bin/java -cp "\$CP" \$JAVA_OPTS \
|
|
|
|
|
liquibase.integration.commandline.Main \''${1+"\$@"}
|
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/liquibase
|
2016-04-05 13:36:56 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2016-12-16 11:19:59 +00:00
|
|
|
|
meta = {
|
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";
|
2016-04-05 13:36:56 +00:00
|
|
|
|
license = licenses.asl20;
|
2018-02-12 05:18:45 +00:00
|
|
|
|
maintainers = with maintainers; [ nequissimus ];
|
2016-08-02 17:50:55 +00:00
|
|
|
|
platforms = with platforms; unix;
|
2016-04-05 13:36:56 +00:00
|
|
|
|
};
|
|
|
|
|
}
|