languagetool: 3.9 -> 4.0

Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- ran `/nix/store/q7ycrljxhd7pbkgvbhsh8fz4496x798n-LanguageTool-4.0/bin/languagetool-commandline --version` and found version 4.0
- found 4.0 with grep in /nix/store/q7ycrljxhd7pbkgvbhsh8fz4496x798n-LanguageTool-4.0
This commit is contained in:
Matthew Bauer 2018-03-17 02:19:27 -05:00 committed by Jörg Thalheim
parent 4d7c1cd8c8
commit 84f3c068df
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "LanguageTool-${version}";
version = "3.9";
version = "4.0";
src = fetchzip {
url = "https://www.languagetool.org/download/${name}.zip";
sha256 = "0hqb4hbl7iryw1xk8q1i606azzgzdr17sy6xfr1zpas4r2pnvhfq";
sha256 = "0nfqn04fb5kvxvpsc6xbgj03rmqcsn8vy2xj0zazijhvbxaf0zfb";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];