Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
298 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
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
gpl3
];
}