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;
|
2018-12-20 19:40:34 +00:00
|
|
|
|
logback-core = fetchurl {
|
|
|
|
|
url = "http://central.maven.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar";
|
|
|
|
|
sha256 = "5946d837fe6f960c02a53eda7a6926ecc3c758bbdd69aa453ee429f858217f22";
|
|
|
|
|
};
|
|
|
|
|
logback-classic = fetchurl {
|
|
|
|
|
url = "http://central.maven.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar";
|
|
|
|
|
sha256 = "fb53f8539e7fcb8f093a56e138112056ec1dc809ebb020b59d8a36a5ebac37e0";
|
|
|
|
|
};
|
|
|
|
|
slf4j = fetchurl {
|
|
|
|
|
url = "http://central.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar";
|
|
|
|
|
sha256 = "18c4a0095d5c1da6b817592e767bb23d29dd2f560ad74df75ff3961dbde25b79";
|
|
|
|
|
};
|
2016-12-16 11:19:59 +00:00
|
|
|
|
in
|
2016-04-05 14:36:56 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
pname = "liquibase";
|
2018-07-11 10:34:53 +01:00
|
|
|
|
version = "3.6.2";
|
2016-04-05 14:36:56 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/liquibase/liquibase/releases/download/${pname}-parent-${version}/${name}-bin.tar.gz";
|
2018-07-11 10:34:53 +01:00
|
|
|
|
sha256 = "199ybjk0xxsg04v5x5l4arljmzj96hxva6ym6bp7av7dny0nqvfx";
|
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 ''
|
|
|
|
|
mkdir -p $out/{bin,lib,sdk}
|
|
|
|
|
mv ./* $out/
|
2018-12-20 19:40:34 +00:00
|
|
|
|
cp ${logback-core} ${logback-classic} ${slf4j} $out/lib
|
2016-12-16 11:19:59 +00:00
|
|
|
|
|
2017-08-16 14:30:44 +01: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 11:19:59 +00: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 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";
|
2017-08-01 21:03:30 +01:00
|
|
|
|
homepage = http://www.liquibase.org/;
|
2016-04-05 14:36:56 +01:00
|
|
|
|
license = licenses.asl20;
|
2018-02-12 05:18:45 +00:00
|
|
|
|
maintainers = with maintainers; [ nequissimus ];
|
2016-08-02 18:50:55 +01:00
|
|
|
|
platforms = with platforms; unix;
|
2016-04-05 14:36:56 +01:00
|
|
|
|
};
|
|
|
|
|
}
|