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:
parent
4b00dfe169
commit
42a3276e9a
1 changed files with 3 additions and 3 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue