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

9 lines
298 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, 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
}