flyway: 5.0.7 -> 5.1.1

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/g01xk8pg48hnpaazi1kl0rhc2qzln0ds-flyway-5.1.1/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.1 with grep in /nix/store/g01xk8pg48hnpaazi1kl0rhc2qzln0ds-flyway-5.1.1
- directory tree listing: https://gist.github.com/4d37780b7850ab73ad0c8dadf82a0a5b
- du listing: https://gist.github.com/40c8567fb139fa68811ad82c15399369
This commit is contained in:
R. RyanTM 2018-05-30 20:21:01 -07:00
parent 6c00639417
commit 3414e67a9d

View File

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