Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4fd84cfe43f6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1fb56c98eb14
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 31, 2018

  1. 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
    R. RyanTM committed May 31, 2018
    Copy the full SHA
    3414e67 View commit details
  2. Merge pull request #41298 from r-ryantm/auto-update/flyway

    flyway: 5.0.7 -> 5.1.1
    Mic92 authored May 31, 2018
    Copy the full SHA
    1fb56c9 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/flyway/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/flyway/default.nix
Original file line number Diff line number Diff line change
@@ -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;