3
0
Fork 0
forked from mirrors/nixpkgs

languagetool: 4.0 -> 4.1

Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/LanguageTool/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/nfv5l06pzfk7xicqzawx5syh6mwg9csk-LanguageTool-4.1/bin/languagetool -h` got 0 exit code
- ran `/nix/store/nfv5l06pzfk7xicqzawx5syh6mwg9csk-LanguageTool-4.1/bin/languagetool --help` got 0 exit code
- ran `/nix/store/nfv5l06pzfk7xicqzawx5syh6mwg9csk-LanguageTool-4.1/bin/languagetool-commandline --version` and found version 4.1
- found 4.1 with grep in /nix/store/nfv5l06pzfk7xicqzawx5syh6mwg9csk-LanguageTool-4.1
- directory tree listing: https://gist.github.com/2125d88e98c5831d6acc52597d8d69e5
This commit is contained in:
R. RyanTM 2018-03-31 03:58:11 -07:00
parent a7af5d4f88
commit 6a71e65151

View file

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