maven: 3.5.2 -> 3.5.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/apache-maven/versions.

These checks were done:

- built on NixOS
- /nix/store/zvhkfnxmklx0bas9zmykbmzqphvi6c9p-apache-maven-3.5.3/bin/mvn 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 3.5.3 with grep in /nix/store/zvhkfnxmklx0bas9zmykbmzqphvi6c9p-apache-maven-3.5.3
- directory tree listing: https://gist.github.com/9a7bcffed5e910bc831d8fa971bbcec6
- du listing: https://gist.github.com/1285616d86145877047eff13f5c9dc6d
This commit is contained in:
R. RyanTM 2018-05-20 21:17:25 -07:00
parent 68cdc9c09e
commit 5aa53cc9df

View File

@ -2,7 +2,7 @@
assert jdk != null;
let version = "3.5.2"; in
let version = "3.5.3"; in
stdenv.mkDerivation rec {
name = "apache-maven-${version}";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://apache/maven/maven-3/${version}/binaries/${name}-bin.tar.gz";
sha256 = "1zza5kjf69hnx41gy3yhvsk1kz259nig5njcmzjbsr8a75p1yyvh";
sha256 = "0244mpziz4rw35x2cahsqlxpnygvi6qpll16g4kx87db7wvmcadm";
};
buildInputs = [ makeWrapper ];