nixpkgs/pkgs/applications/misc/ape/apeclex.nix

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

9 lines
290 B
Nix
Raw Normal View History

{ lib, attemptoClex, callPackage }:
2018-03-14 06:10:59 +00:00
callPackage ./. {
pname = "ape-clex";
lexiconPath = "${attemptoClex}/clex_lexicon.pl";
2018-03-14 06:10:59 +00:00
description = "Parser for Attempto Controlled English (ACE) with a large lexicon (~100,000 entries)";
2021-01-15 05:42:41 +00:00
license = with lib; [ licenses.lgpl3 licenses.gpl3 ];
2018-03-14 06:10:59 +00:00
}