2016-12-16 12:19:59 +01:00
|
|
|
|
{ stdenv, fetchurl, writeText, jre, makeWrapper, fetchMavenArtifact
|
|
|
|
|
, mysqlSupport ? true, mysql_jdbc ? null }:
|
|
|
|
|
|
|
|
|
|
assert mysqlSupport -> mysql_jdbc != null;
|
|
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
let
|
|
|
|
|
extraJars = optional mysqlSupport mysql_jdbc;
|
|
|
|
|
|
|
|
|
|
in
|
2016-04-05 15:36:56 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
pname = "liquibase";
|
2018-02-27 06:41:04 +01:00
|
|
|
|
version = "3.5.5";
|
2016-04-05 15:36:56 +02:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/liquibase/liquibase/releases/download/${pname}-parent-${version}/${name}-bin.tar.gz";
|
2018-02-27 06:41:04 +01:00
|
|
|
|
sha256 = "1ipjbzdb32xigm0vg6zzjnbx9n248rrkr324n5igp53nxbvgf3fs";
|
2016-04-05 15:36:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [ jre makeWrapper ];
|
|
|
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
|
tar xfz ${src}
|
|
|
|
|
'';
|
|
|
|
|
|
2016-12-16 12:19:59 +01:00
|
|
|
|
installPhase =
|
|
|
|
|
let addJars = dir: ''
|
|
|
|
|
for jar in ${dir}/*.jar; do
|
|
|
|
|
CP="\$CP":"\$jar"
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
in ''
|
|
|
|
|
mkdir -p $out/{bin,lib,sdk}
|
|
|
|
|
mv ./* $out/
|
|
|
|
|
|
2017-08-16 15:30:44 +02:00
|
|
|
|
# Clean up documentation.
|
|
|
|
|
mkdir -p $out/share/doc/${name}
|
|
|
|
|
mv $out/LICENSE.txt \
|
|
|
|
|
$out/README.txt \
|
|
|
|
|
$out/share/doc/${name}
|
|
|
|
|
|
|
|
|
|
# Remove silly files.
|
|
|
|
|
rm $out/liquibase.bat $out/liquibase.spec
|
|
|
|
|
|
2016-12-16 12:19:59 +01:00
|
|
|
|
# we provide our own script
|
|
|
|
|
rm $out/liquibase
|
|
|
|
|
|
|
|
|
|
# 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 15:36:56 +02:00
|
|
|
|
'';
|
|
|
|
|
|
2016-12-16 12:19:59 +01:00
|
|
|
|
meta = {
|
2016-04-05 15:36:56 +02:00
|
|
|
|
description = "Version Control for your database";
|
2017-08-01 22:03:30 +02:00
|
|
|
|
homepage = http://www.liquibase.org/;
|
2016-04-05 15:36:56 +02:00
|
|
|
|
license = licenses.asl20;
|
2018-02-12 06:18:45 +01:00
|
|
|
|
maintainers = with maintainers; [ nequissimus ];
|
2016-08-02 19:50:55 +02:00
|
|
|
|
platforms = with platforms; unix;
|
2016-04-05 15:36:56 +02:00
|
|
|
|
};
|
|
|
|
|
}
|