a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
8 lines
298 B
Nix
8 lines
298 B
Nix
{ lib, 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 lib; [ licenses.lgpl3 licenses.gpl3 ];
|
|
}
|