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

9 lines
300 B
Nix
Raw Normal View History

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