python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / languagemachines / frog.nix
blob50167f28a9db2c506cc2e37ef30e808c3bb8f803
1 { lib, stdenv, fetchurl
2 , automake, autoconf, bzip2, libtar, libtool, pkg-config, autoconf-archive
3 , libxml2, icu
4 , languageMachines
5 }:
7 let
8   release = lib.importJSON ./release-info/LanguageMachines-frog.json;
9 in
11 stdenv.mkDerivation {
12   pname = "frog";
13   version = release.version;
14   src = fetchurl { inherit (release) url sha256;
15                    name = "frog-v${release.version}.tar.gz"; };
16   nativeBuildInputs = [ pkg-config automake autoconf ];
17   buildInputs = [ bzip2 libtar libtool autoconf-archive
18                   libxml2 icu
19                   languageMachines.ticcutils
20                   languageMachines.timbl
21                   languageMachines.mbt
22                   languageMachines.libfolia
23                   languageMachines.ucto
24                   languageMachines.frogdata
25                 ];
27   preConfigure = ''
28     sh bootstrap.sh
29   '';
30   postInstall = ''
31     # frog expects the data files installed in the same prefix
32     mkdir -p $out/share/frog/;
33     for f in ${languageMachines.frogdata}/share/frog/*; do
34       ln -s $f $out/share/frog/;
35     done;
37     make check
38   '';
40   meta = with lib; {
41     description = "A Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch";
42     homepage    = "https://languagemachines.github.io/frog";
43     license     = licenses.gpl3;
44     platforms   = platforms.all;
45     maintainers = with maintainers; [ roberth ];
47     longDescription = ''
48       Frog is an integration of memory-based natural language processing (NLP) modules developed for Dutch. All NLP modules are based on Timbl, the Tilburg memory-based learning software package. Most modules were created in the 1990s at the ILK Research Group (Tilburg University, the Netherlands) and the CLiPS Research Centre (University of Antwerp, Belgium). Over the years they have been integrated into a single text processing tool, which is currently maintained and developed by the Language Machines Research Group and the Centre for Language and Speech Technology at Radboud University Nijmegen. A dependency parser, a base phrase chunker, and a named-entity recognizer module were added more recently. Where possible, Frog makes use of multi-processor support to run subtasks in parallel.
50       Various (re)programming rounds have been made possible through funding by NWO, the Netherlands Organisation for Scientific Research, particularly under the CGN project, the IMIX programme, the Implicit Linguistics project, the CLARIN-NL programme and the CLARIAH programme.
51     '';
52   };