Merge pull request #94437 from r-ryantm/auto-update/flyway

flyway: 6.5.0 -> 6.5.3
This commit is contained in:
Mario Rodas 2020-08-02 10:03:06 -05:00 committed by GitHub
commit 609cc7bb62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,13 @@
{ stdenv, fetchurl, jre_headless, makeWrapper }:
let
version = "6.5.0";
version = "6.5.3";
in
stdenv.mkDerivation {
pname = "flyway";
inherit version;
src = fetchurl {
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz";
sha256 = "0qag8xz347vwwqlwirlz5vnhvfga79ihwqp1y0rbqzhcnwpjzc69";
sha256 = "1gxa9gg7di79kl6aayryhrkm3nzn3sc7hg2x1ldy1q72x6wz41sc";
};
nativeBuildInputs = [ makeWrapper ];
dontBuild = true;