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: 1dcff621e788
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d019acd54101
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 29, 2019

  1. flyway: 5.2.4 -> 6.1.0

    * flyway: 5.2.4 -> 6.0.4 (#69561)
    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
    
    * flyway: 6.0.4 -> 6.1.0
    r-ryantm authored and c0bw3b committed Nov 29, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    endocrimes Danielle
    Copy the full SHA
    d019acd View commit details
Showing with 10 additions and 3 deletions.
  1. +10 −3 pkgs/development/tools/flyway/default.nix
13 changes: 10 additions & 3 deletions pkgs/development/tools/flyway/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,35 @@
{ stdenv, fetchurl, jre_headless, makeWrapper }:
let
version = "5.2.4";
version = "6.1.0";
in
stdenv.mkDerivation {
pname = "flyway";
inherit version;
src = fetchurl {
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz";
sha256 = "16ia6nlvj4cgmdkn66bjg73h5vah82hpzk9mf0n5kmqnwcaa8hmc";
sha256 = "14f8vviki89dqhd429zlj0frma52xhyxpdln5c81z1dgs7819rpg";
};
nativeBuildInputs = [ makeWrapper ];
dontBuild = true;
dontStrip = true;
installPhase = ''
mkdir -p $out/bin $out/share/flyway
cp -r sql jars drivers conf $out/share/flyway
cp -r lib/community $out/share/flyway/lib
install -Dt $out/share/flyway/lib lib/community/*.jar lib/*.jar
makeWrapper "${jre_headless}/bin/java" $out/bin/flyway \
--add-flags "-Djava.security.egd=file:/dev/../dev/urandom" \
--add-flags "-classpath '$out/share/flyway/lib/*:$out/share/flyway/drivers/*'" \
--add-flags "org.flywaydb.commandline.Main"
'';
meta = with stdenv.lib; {
description = "Evolve your Database Schema easily and reliably across all your instances";
longDescription = ''
The Flyway command-line tool is a standalone Flyway distribution.
It is primarily meant for users who wish to migrate their database from the command-line
without having to integrate Flyway into their applications nor having to install a build tool.
This package is only the Community Edition of the Flyway command-line tool.
'';
homepage = "https://flywaydb.org/";
license = licenses.asl20;
platforms = platforms.unix;