2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, attemptoClex, callPackage }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
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)";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = with lib; [ licenses.lgpl3 licenses.gpl3 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|