3d40669548
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/liquibase/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.6.0 with grep in /nix/store/q0h0dm35qda3vls6axin875ky93n0idg-liquibase-3.6.0 - directory tree listing: https://gist.github.com/d7568f9f2cd317086e4b519f4749b8d8
72 lines
1.8 KiB
Nix
72 lines
1.8 KiB
Nix
{ 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 {
|
||
name = "${pname}-${version}";
|
||
pname = "liquibase";
|
||
version = "3.6.0";
|
||
|
||
src = fetchurl {
|
||
url = "https://github.com/liquibase/liquibase/releases/download/${pname}-parent-${version}/${name}-bin.tar.gz";
|
||
sha256 = "0nrszf80s5v485li7xy8jkl1wsgjq6inr33m7p85splxhdgszjlb";
|
||
};
|
||
|
||
buildInputs = [ jre makeWrapper ];
|
||
|
||
unpackPhase = ''
|
||
tar xfz ${src}
|
||
'';
|
||
|
||
installPhase =
|
||
let addJars = dir: ''
|
||
for jar in ${dir}/*.jar; do
|
||
CP="\$CP":"\$jar"
|
||
done
|
||
'';
|
||
in ''
|
||
mkdir -p $out/{bin,lib,sdk}
|
||
mv ./* $out/
|
||
|
||
# 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
|
||
|
||
# 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
|
||
'';
|
||
|
||
meta = {
|
||
description = "Version Control for your database";
|
||
homepage = http://www.liquibase.org/;
|
||
license = licenses.asl20;
|
||
maintainers = with maintainers; [ nequissimus ];
|
||
platforms = with platforms; unix;
|
||
};
|
||
}
|