liquibase: improve external jar integration (#20818)

This replaces the upstream wrapper script with one tailored for nixpkgs.
We gain the ability to selectively enable/disable jdbc backends.
This commit is contained in:
Profpatsch 2016-12-16 12:19:59 +01:00 committed by Franz Pletz
parent 3fc60ec351
commit 52c34f626c

View File

@ -1,4 +1,13 @@
{ stdenv, fetchurl, jre, makeWrapper }: { 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
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
@ -16,18 +25,38 @@ stdenv.mkDerivation rec {
tar xfz ${src} tar xfz ${src}
''; '';
installPhase = '' installPhase =
mkdir -p $out/{bin,lib,sdk} let addJars = dir: ''
mv ./* $out/ for jar in ${dir}/*.jar; do
wrapProgram $out/liquibase --prefix PATH ":" ${jre}/bin --set LIQUIBASE_HOME $out; CP="\$CP":"\$jar"
ln -s $out/liquibase $out/bin/liquibase done
'';
in ''
mkdir -p $out/{bin,lib,sdk}
mv ./* $out/
# we provide our own script
rm $out/liquibase
# theres a lot of escaping, but Im 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
''; '';
meta = with stdenv.lib; { meta = {
description = "Version Control for your database"; description = "Version Control for your database";
homepage = "http://www.liquibase.org/"; homepage = "http://www.liquibase.org/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ nequissimus ]; maintainers = with maintainers; [ nequissimus profpatsch ];
platforms = with platforms; unix; platforms = with platforms; unix;
}; };
} }