flyway: 5.1.3 -> 5.1.4 (#43200)

Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/flyway/versions.

These checks were done:

- built on NixOS
- /nix/store/1g49jlhy30sijz0js59lfnrg8k3mqvjf-flyway-5.1.4/bin/flyway passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 5.1.4 with grep in /nix/store/1g49jlhy30sijz0js59lfnrg8k3mqvjf-flyway-5.1.4
- directory tree listing: https://gist.github.com/869e3436d0f2761951eabdad68c0319d
- du listing: https://gist.github.com/6e8110c905ef757a084d835bb3181c41

authored by R. RyanTM and committed by xeji 06a6d1cb 9e867b86

+3 -3
+3 -3
pkgs/development/tools/flyway/default.nix
··· 1 1 { stdenv, fetchurl, jre_headless, makeWrapper }: 2 2 let 3 - version = "5.1.3"; 3 + version = "5.1.4"; 4 4 in 5 5 stdenv.mkDerivation { 6 6 name = "flyway-${version}"; 7 7 src = fetchurl { 8 - url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/5.1.3/flyway-commandline-${version}.tar.gz"; 9 - sha256 = "08nrjrpcb56f2mhghgjbvl7bfzvlgc81ykxzghq3kpslx5d560lm"; 8 + url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/5.1.4/flyway-commandline-${version}.tar.gz"; 9 + sha256 = "1raz125k55v6xa8gp6ylcjxz77r5364xqp9di46rayx3z2282f7q"; 10 10 }; 11 11 buildInputs = [ makeWrapper ]; 12 12 dontBuild = true;