summary refs log tree commit diff
path: root/pkgs/tools/text/languagetool
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-01-11 11:17:26 +0000
committerTredwellGit <tredwell@tutanota.com>2021-01-11 11:17:26 +0000
commit8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719 (patch)
treed3cdee0dd4194b21b0b55a5382cf41f380bf30be /pkgs/tools/text/languagetool
parent9a33d28fe2ddd3c6cc1f82cf01ff6884aa4cd69e (diff)
downloadnixpkgs-8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719.tar
nixpkgs-8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719.tar.gz
nixpkgs-8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719.tar.bz2
nixpkgs-8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719.tar.lz
nixpkgs-8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719.tar.xz
nixpkgs-8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719.tar.zst
nixpkgs-8b2edefcd6e8773d7d2ba1005f3a00e8f9b56719.zip
languagetool: 5.1 -> 5.2
https://github.com/languagetool-org/languagetool/blob/v5.2/languagetool-standalone/CHANGES.md
Diffstat (limited to 'pkgs/tools/text/languagetool')
-rw-r--r--pkgs/tools/text/languagetool/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/tools/text/languagetool/default.nix b/pkgs/tools/text/languagetool/default.nix
index a951285bd06..90ddd5b6929 100644
--- a/pkgs/tools/text/languagetool/default.nix
+++ b/pkgs/tools/text/languagetool/default.nix
@@ -2,18 +2,18 @@
 
 stdenv.mkDerivation rec {
   pname = "LanguageTool";
-  version = "5.1";
+  version = "5.2";
 
   src = fetchzip {
     url = "https://www.languagetool.org/download/${pname}-${version}.zip";
-    sha256 = "07a2cxsa04lzifphlf5mv88xpnixalmryd0blawblxsmdyhmvg3y";
+    sha256 = "1fz3rxqg5z2jxbalraz8lwkzj0jh69zzfmf3vpwywilvl7xlhdrd";
   };
   nativeBuildInputs = [ makeWrapper ];
   buildInputs = [ jre ];
 
   installPhase = ''
     mkdir -p $out/share
-    mv * $out/share/
+    mv -- * $out/share/
 
     for lt in languagetool{,-commandline,-server};do
       makeWrapper ${jre}/bin/java $out/bin/$lt \
@@ -27,9 +27,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = "https://languagetool.org";
     license = licenses.lgpl21Plus;
-    maintainers = with maintainers; [
-      edwtjo
-    ];
+    maintainers = with maintainers; [ edwtjo ];
     platforms = jre.meta.platforms;
     description = "A proofreading program for English, French German, Polish, and more";
   };