1693fb2285
GitOrigin-RevId: 420f89ceb267b461eed5d025b6c3c0e57703cc5c
8 lines
300 B
Nix
8 lines
300 B
Nix
{ stdenv, attemptoClex, callPackage }:
|
|
|
|
callPackage ./. {
|
|
pname = "ape-clex";
|
|
lexiconPath = "${attemptoClex}/clex_lexicon.pl";
|
|
description = "Parser for Attempto Controlled English (ACE) with a large lexicon (~100,000 entries)";
|
|
license = with stdenv.lib; [ licenses.lgpl3 licenses.gpl3 ];
|
|
}
|