2021-01-21 22:03:48 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, jre, makeWrapper
|
2020-12-04 18:02:41 +00:00
|
|
|
|
, mysqlSupport ? true, mysql_jdbc
|
|
|
|
|
, postgresqlSupport ? true, postgresql_jdbc }:
|
2016-12-16 11:19:59 +00:00
|
|
|
|
|
|
|
|
|
let
|
2020-12-04 18:02:41 +00:00
|
|
|
|
extraJars =
|
|
|
|
|
lib.optional mysqlSupport mysql_jdbc
|
|
|
|
|
++ lib.optional postgresqlSupport postgresql_jdbc;
|
2016-12-16 11:19:59 +00:00
|
|
|
|
in
|
2016-04-05 14:36:56 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "liquibase";
|
2021-02-14 03:52:46 +00:00
|
|
|
|
version = "4.3.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";
|
2021-02-14 03:52:46 +00:00
|
|
|
|
sha256 = "sha256-hOemDLfkjjPXQErKKCIMl8c5EPZe40B1HlNfvg7IZKU=";
|
2016-04-05 14:36:56 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
buildInputs = [ jre ];
|
2016-04-05 14:36:56 +01: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
|
|
|
|
|
'';
|
|
|
|
|
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"}
|
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 \
|
2016-12-16 11:19:59 +00:00
|
|
|
|
liquibase.integration.commandline.Main \''${1+"\$@"}
|
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/liquibase
|
2016-04-05 14:36:56 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-21 22:03:48 +00:00
|
|
|
|
meta = with lib; {
|
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
|
|
|
|
};
|
|
|
|
|
}
|