summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-17 02:19:27 -0500
committerJörg Thalheim <joerg@thalheim.io>2018-03-18 10:32:03 +0000
commit84f3c068dfe61f6356b9550be4d2274ad1725e76 (patch)
tree3795bdf4b4bfbe601f8f6139254d8b79ac5e52e8 /pkgs/tools
parent4d7c1cd8c835300fe1f13037311ba57d6c354bf6 (diff)
downloadnixlib-84f3c068dfe61f6356b9550be4d2274ad1725e76.tar
nixlib-84f3c068dfe61f6356b9550be4d2274ad1725e76.tar.gz
nixlib-84f3c068dfe61f6356b9550be4d2274ad1725e76.tar.bz2
nixlib-84f3c068dfe61f6356b9550be4d2274ad1725e76.tar.lz
nixlib-84f3c068dfe61f6356b9550be4d2274ad1725e76.tar.xz
nixlib-84f3c068dfe61f6356b9550be4d2274ad1725e76.tar.zst
nixlib-84f3c068dfe61f6356b9550be4d2274ad1725e76.zip
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
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/languagetool/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/languagetool/default.nix b/pkgs/tools/text/languagetool/default.nix
index 6fcfd6fff85f..2d18edeb44d6 100644
--- a/pkgs/tools/text/languagetool/default.nix
+++ b/pkgs/tools/text/languagetool/default.nix
@@ -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 ];