3
0
Fork 0
forked from mirrors/nixpkgs

flyway: 5.2.1 -> 5.2.4

* flyway: 5.2.1 -> 5.2.4 (#52325)

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: makeWrapper is a build-time input

moved it from buildInputs to nativeBuildInputs
This commit is contained in:
R. RyanTM 2018-12-16 12:15:55 -08:00 committed by Renaud
parent 4b00dfe169
commit 42a3276e9a

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, jre_headless, makeWrapper }:
let
version = "5.2.1";
version = "5.2.4";
in
stdenv.mkDerivation {
name = "flyway-${version}";
src = fetchurl {
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz";
sha256 = "0lm536qc8pqj4s21dd47gi99nwwflk17gqzfwaflghw3fnhn7i1s";
sha256 = "16ia6nlvj4cgmdkn66bjg73h5vah82hpzk9mf0n5kmqnwcaa8hmc";
};
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
dontBuild = true;
dontStrip = true;
installPhase = ''