flyway: 9.22.3 -> 10.20.1 (#346911)
This commit is contained in:
commit
e3363e9522
@ -2,29 +2,30 @@
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "flyway";
|
||||
version = "9.22.3";
|
||||
version = "10.20.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://maven/org/flywaydb/flyway-commandline/${finalAttrs.version}/flyway-commandline-${finalAttrs.version}.tar.gz";
|
||||
sha256 = "sha256-utAJpbU5NkKyJyyWB0yfwHZJxQAVJgiKm12wmGK1ojQ=";
|
||||
url =
|
||||
"mirror://maven/org/flywaydb/flyway-commandline/${finalAttrs.version}/flyway-commandline-${finalAttrs.version}.tar.gz";
|
||||
sha256 = "sha256-ntFaXwF3EThHxR7rpAivTRDN4bgS1l0RFFyvbs/8dxE=";
|
||||
};
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
dontBuild = true;
|
||||
dontStrip = true;
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/flyway
|
||||
cp -r sql jars drivers conf $out/share/flyway
|
||||
install -Dt $out/share/flyway/lib lib/community/*.jar lib/*.jar lib/aad/*.jar lib/oracle_wallet/*.jar
|
||||
cp -r drivers conf licenses README.txt $out/share/flyway
|
||||
install -Dt $out/share/flyway/lib lib/*.jar lib/flyway/*.jar lib/oracle_wallet/*.jar lib/aad/msal4j-1.15.1.jar lib/aad/slf4j-api-1.7.30.jar
|
||||
makeWrapper "${jre_headless}/bin/java" $out/bin/flyway \
|
||||
--add-flags "-Djava.security.egd=file:/dev/../dev/urandom" \
|
||||
--add-flags "-classpath '$out/share/flyway/lib/*:$out/share/flyway/drivers/*'" \
|
||||
--add-flags "org.flywaydb.commandline.Main" \
|
||||
--add-flags "-jarDirs='$out/share/flyway/jars'"
|
||||
'';
|
||||
passthru.tests = {
|
||||
version = testers.testVersion { package = finalAttrs.finalPackage; };
|
||||
};
|
||||
meta = with lib; {
|
||||
description = "Evolve your Database Schema easily and reliably across all your instances";
|
||||
description =
|
||||
"Evolve your Database Schema easily and reliably across all your instances";
|
||||
longDescription = ''
|
||||
The Flyway command-line tool is a standalone Flyway distribution.
|
||||
It is primarily meant for users who wish to migrate their database from the command-line
|
||||
@ -35,7 +36,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
mainProgram = "flyway";
|
||||
downloadPage = "https://github.com/flyway/flyway";
|
||||
homepage = "https://flywaydb.org/";
|
||||
changelog = "https://documentation.red-gate.com/fd/release-notes-for-flyway-engine-179732572.html";
|
||||
changelog =
|
||||
"https://documentation.red-gate.com/fd/release-notes-for-flyway-engine-179732572.html";
|
||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
|
Loading…
Reference in New Issue
Block a user