2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv, attemptoClex, callPackage }:
|
|
|
|
|
|
|
|
callPackage ./. {
|
|
|
|
pname = "ape-clex";
|
2020-10-07 09:15:18 +00:00
|
|
|
lexiconPath = "${attemptoClex}/clex_lexicon.pl";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Parser for Attempto Controlled English (ACE) with a large lexicon (~100,000 entries)";
|
|
|
|
license = with stdenv.lib; [ licenses.lgpl3 licenses.gpl3 ];
|
|
|
|
}
|