summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-06-22 21:59:41 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-06-22 21:59:41 +0200
commit239d35338f29f03a1b5fb33c2794eeacf4342c88 (patch)
tree99b0cfd544049a6a3c908de8dba02dfee662f060 /pkgs
parenta14365b568370790fc363e8b0358e3d3e542bca5 (diff)
downloadnixlib-239d35338f29f03a1b5fb33c2794eeacf4342c88.tar
nixlib-239d35338f29f03a1b5fb33c2794eeacf4342c88.tar.gz
nixlib-239d35338f29f03a1b5fb33c2794eeacf4342c88.tar.bz2
nixlib-239d35338f29f03a1b5fb33c2794eeacf4342c88.tar.lz
nixlib-239d35338f29f03a1b5fb33c2794eeacf4342c88.tar.xz
nixlib-239d35338f29f03a1b5fb33c2794eeacf4342c88.tar.zst
nixlib-239d35338f29f03a1b5fb33c2794eeacf4342c88.zip
antlr: add meta attributes
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/parsing/antlr/2.7.7.nix13
-rw-r--r--pkgs/development/tools/parsing/antlr/default.nix13
2 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/tools/parsing/antlr/2.7.7.nix b/pkgs/development/tools/parsing/antlr/2.7.7.nix
index 8d68479dd0e6..23141185f68e 100644
--- a/pkgs/development/tools/parsing/antlr/2.7.7.nix
+++ b/pkgs/development/tools/parsing/antlr/2.7.7.nix
@@ -8,4 +8,17 @@ stdenv.mkDerivation {
   };
   patches = [ ./2.7.7-fixes.patch ];
   buildInputs = [jdk python];
+
+  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.linux;
+  };
 }
diff --git a/pkgs/development/tools/parsing/antlr/default.nix b/pkgs/development/tools/parsing/antlr/default.nix
index deb8040256b5..e866f61f25a3 100644
--- a/pkgs/development/tools/parsing/antlr/default.nix
+++ b/pkgs/development/tools/parsing/antlr/default.nix
@@ -8,4 +8,17 @@ stdenv.mkDerivation {
     md5 = "6a7e70ccece8149b735cc3aaa24241cc";
   };
   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.linux;
+  };
 }