3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/database/liquibase/default.nix

67 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, jre, makeWrapper
, 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-03-02 12:18:18 +00:00
version = "3.8.7";
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-03-02 12:18:18 +00:00
sha256 = "0gs3pmzyx2bz6af2fr5jla3s33vfaw64pgahfvj5bgpj6d7vx1wg";
2016-04-05 14:36:56 +01:00
};
buildInputs = [ jre makeWrapper ];
unpackPhase = ''
tar xfz ${src}
'';
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/
mkdir -p $out/share/doc/${pname}-${version}
2020-01-26 14:42:27 +00:00
mv LICENSE.txt \
README.txt \
ABOUT.txt \
changelog.txt \
$out/share/doc/${pname}-${version}
2020-01-26 14:42:27 +00:00
mkdir -p $out/bin
# 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
2016-04-05 14:36:56 +01:00
'';
meta = {
2016-04-05 14:36:56 +01:00
description = "Version Control for your database";
2020-03-02 12:18:18 +00:00
homepage = "http://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;
maintainers = with maintainers; [ nequissimus ];
platforms = with platforms; unix;
2016-04-05 14:36:56 +01:00
};
}