nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 attemptoClex,
4 callPackage,
5}:
6
7callPackage ./. {
8 pname = "ape-clex";
9 lexiconPath = "${attemptoClex}/clex_lexicon.pl";
10 description = "Parser for Attempto Controlled English (ACE) with a large lexicon (~100,000 entries)";
11 license = with lib.licenses; [
12 lgpl3
13 gpl3
14 ];
15}