aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/flyway
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-07-13 14:55:14 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-07-13 23:55:14 +0200
commit06a6d1cb33ccde930978db7ffa04c64404bfbe4b (patch)
tree6fb9ee73fdd2804d187136ee4b56c8d0d218daf5 /pkgs/development/tools/flyway
parent9e867b863950e37e8822cc627b8678322d604ebd (diff)
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
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 86636635334..70f6d8021ff 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.1.3";
+ version = "5.1.4";
in
stdenv.mkDerivation {
name = "flyway-${version}";
src = fetchurl {
- url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/5.1.3/flyway-commandline-${version}.tar.gz";
- sha256 = "08nrjrpcb56f2mhghgjbvl7bfzvlgc81ykxzghq3kpslx5d560lm";
+ url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/5.1.4/flyway-commandline-${version}.tar.gz";
+ sha256 = "1raz125k55v6xa8gp6ylcjxz77r5364xqp9di46rayx3z2282f7q";
};
buildInputs = [ makeWrapper ];
dontBuild = true;