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

flyway: 5.1.1 -> 5.1.3
This commit is contained in:
Pascal Wittmann 2018-06-25 15:36:33 +02:00 committed by GitHub
commit b13fe97f16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, jre_headless, makeWrapper }:
let
version = "5.1.1";
version = "5.1.3";
in
stdenv.mkDerivation {
name = "flyway-${version}";
src = fetchurl {
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/5.1.1/flyway-commandline-${version}.tar.gz";
sha256 = "0kdi7m5rwlik0d2rn9s3siqmc83xfkhhsdxw3g7r1mvk2ivscb7f";
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/5.1.3/flyway-commandline-${version}.tar.gz";
sha256 = "08nrjrpcb56f2mhghgjbvl7bfzvlgc81ykxzghq3kpslx5d560lm";
};
buildInputs = [ makeWrapper ];
dontBuild = true;