aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/flyway
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-06-24 01:25:55 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-06-24 01:25:55 -0700
commite48aac54fd159a91ecf732f090921b8346360c28 (patch)
treea0767102bb3fb34a0f891e079b856d013f833a80 /pkgs/development/tools/flyway
parent904114fdb85df99e5e9472c9f6fd6432dc4f9d74 (diff)
flyway: 5.1.1 -> 5.1.3
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/iw4rl4pi38wjywnvw123qbr3y2nvq2b3-flyway-5.1.3/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.3 with grep in /nix/store/iw4rl4pi38wjywnvw123qbr3y2nvq2b3-flyway-5.1.3 - directory tree listing: https://gist.github.com/106acf9a49f47aca074952bf0cc79dc7 - du listing: https://gist.github.com/51bdf3dc1d3334b3be4b67b14ea31955
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 924dde91acc..86636635334 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.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;