summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/antlr/4.7.nix
blob: e097b5b3d5a5774f2f99da817a7fde22a07e0905 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{stdenv, fetchurl, jre}:

stdenv.mkDerivation rec {
  name = "antlr-${version}";
  version = "4.7.1";
  src = fetchurl {
    url ="https://www.antlr.org/download/antlr-${version}-complete.jar";
    sha256 = "1236gwnzchama92apb2swmklnypj01m7bdwwfvwvl8ym85scw7gl";
  };

  unpackPhase = "true";
 
  installPhase = ''
    mkdir -p "$out"/{share/java,bin}
    cp "$src" "$out/share/java/antlr-${version}-complete.jar"

    echo "#! ${stdenv.shell}" >> "$out/bin/antlr"
    echo "'${jre}/bin/java' -cp '$out/share/java/antlr-${version}-complete.jar:$CLASSPATH' -Xmx500M org.antlr.v4.Tool \"\$@\"" >> "$out/bin/antlr"
    
    echo "#! ${stdenv.shell}" >> "$out/bin/grun"
    echo "'${jre}/bin/java' -cp '$out/share/java/antlr-${version}-complete.jar:$CLASSPATH' org.antlr.v4.gui.TestRig \"\$@\"" >> "$out/bin/grun"

    chmod a+x "$out/bin/antlr" "$out/bin/grun"
    ln -s "$out/bin/antlr"{,4}
  '';

  inherit jre;

  meta = with stdenv.lib; {
    description = "Powerful parser generator";
    longDescription = ''
      ANTLR (ANother Tool for Language Recognition) is a powerful parser
      generator for reading, processing, executing, or translating structured
      text or binary files. It's widely used to build languages, tools, and
      frameworks. From a grammar, ANTLR generates a parser that can build and
      walk parse trees.
    '';
    homepage = http://www.antlr.org/;
    platforms = platforms.unix;
  };
}