Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / omegat.nix
blobda4de96fbce0be4202c31725289a97eecf889cc7
1 { lib, stdenv, fetchurl, unzip, jdk, makeWrapper}:
3 stdenv.mkDerivation {
4   version = "6.0.0";
5   pname = "omegat";
7   src = fetchurl {  # their zip has repeated files or something, so no fetchzip
8     url = "mirror://sourceforge/project/omegat/OmegaT%20-%20Standard/OmegaT%206.0.0/OmegaT_6.0.0_Without_JRE.zip";
9     sha256 = "sha256-dsbT5iuZBudUL4Kw4rdvi4y98mcvnYNj9jRvC5wJoYI=";
10   };
12   nativeBuildInputs = [ makeWrapper unzip ];
14   unpackCmd = "unzip -o $curSrc";  # tries to go interactive without -o
16   installPhase = ''
17     mkdir -p $out/bin
18     cp -r lib docs images plugins scripts *.txt *.html OmegaT.jar $out/
20     cat > $out/bin/omegat <<EOF
21     #! $SHELL -e
22     CLASSPATH="$out/lib"
23     exec ${jdk}/bin/java -jar -Xmx1024M $out/OmegaT.jar "\$@"
24     EOF
25     chmod +x $out/bin/omegat
26   '';
28   meta = with lib; {
29     description = "The free computer aided translation (CAT) tool for professionals";
30     longDescription = ''
31       OmegaT is a free and open source multiplatform Computer Assisted Translation
32       tool with fuzzy matching, translation memory, keyword search, glossaries, and
33       translation leveraging into updated projects.
34     '';
35     homepage = "http://www.omegat.org/";
36     sourceProvenance = with sourceTypes; [ binaryBytecode ];
37     license = licenses.gpl3Plus;
38     maintainers = with maintainers; [ t184256 ];
39     platforms = [ "i686-linux" "x86_64-linux" ];
40   };