summary refs log tree commit diff
path: root/pkgs/development/tools/flyway
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-30 20:21:01 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-05-30 20:21:01 -0700
commit3414e67a9de794948a595e94f31bc29eac3f95e3 (patch)
treeac94b8371332be74beadfbda4b555e9d2ba451e4 /pkgs/development/tools/flyway
parent6c00639417d3da7869cf2aa3a23274d783df4465 (diff)
downloadnixpkgs-3414e67a9de794948a595e94f31bc29eac3f95e3.tar
nixpkgs-3414e67a9de794948a595e94f31bc29eac3f95e3.tar.gz
nixpkgs-3414e67a9de794948a595e94f31bc29eac3f95e3.tar.bz2
nixpkgs-3414e67a9de794948a595e94f31bc29eac3f95e3.tar.lz
nixpkgs-3414e67a9de794948a595e94f31bc29eac3f95e3.tar.xz
nixpkgs-3414e67a9de794948a595e94f31bc29eac3f95e3.tar.zst
nixpkgs-3414e67a9de794948a595e94f31bc29eac3f95e3.zip
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
Diffstat (limited to 'pkgs/development/tools/flyway')
-rw-r--r--pkgs/development/tools/flyway/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/flyway/default.nix b/pkgs/development/tools/flyway/default.nix
index 43026e55e7f..924dde91acc 100644
--- a/pkgs/development/tools/flyway/default.nix
+++ b/pkgs/development/tools/flyway/default.nix
@@ -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;