2018-07-21 01:44:44 +01: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 14:36:56 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "liquibase";
|
2020-10-25 19:38:14 +00:00
|
|
|
|
version = "4.1.1";
|
2016-04-05 14:36:56 +01: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-10-25 19:38:14 +00:00
|
|
|
|
sha256 = "0gq3y2cgqb1dky5baqjydwmnaimczvsfg8dqc55c7aqcgy7hp3pg";
|
2016-04-05 14:36:56 +01: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 13:41:18 +01: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 13:41:18 +01:00
|
|
|
|
$out/share/doc/${pname}-${version}
|
2017-08-16 14:30:44 +01: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 14:36:56 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2016-12-16 11:19:59 +00:00
|
|
|
|
meta = {
|
2016-04-05 14:36:56 +01:00
|
|
|
|
description = "Version Control for your database";
|
2020-10-02 08:58:50 +01: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 14:36:56 +01:00
|
|
|
|
license = licenses.asl20;
|
2020-10-08 15:21:19 +01:00
|
|
|
|
maintainers = with maintainers; [ ];
|
2016-08-02 18:50:55 +01:00
|
|
|
|
platforms = with platforms; unix;
|
2016-04-05 14:36:56 +01:00
|
|
|
|
};
|
|
|
|
|
}
|