python312Packages.publicsuffixlist: 1.0.2.20241207 -> 1.0.2.20241213 (#365192)
[NixPkgs.git] / pkgs / development / libraries / languagemachines / frog.nix
blobd9864573c3b580c671db94afa3762498f4e6acbe
2   lib,
3   stdenv,
4   fetchurl,
5   automake,
6   autoconf,
7   bzip2,
8   libtar,
9   libtool,
10   pkg-config,
11   autoconf-archive,
12   libxml2,
13   icu,
14   languageMachines,
17 let
18   release = lib.importJSON ./release-info/LanguageMachines-frog.json;
21 stdenv.mkDerivation {
22   pname = "frog";
23   version = release.version;
24   src = fetchurl {
25     inherit (release) url sha256;
26     name = "frog-v${release.version}.tar.gz";
27   };
28   nativeBuildInputs = [
29     pkg-config
30     automake
31     autoconf
32   ];
33   buildInputs = [
34     bzip2
35     libtar
36     libtool
37     autoconf-archive
38     libxml2
39     icu
40     languageMachines.ticcutils
41     languageMachines.timbl
42     languageMachines.mbt
43     languageMachines.libfolia
44     languageMachines.ucto
45     languageMachines.frogdata
46   ];
48   preConfigure = ''
49     sh bootstrap.sh
50   '';
51   postInstall = ''
52     # frog expects the data files installed in the same prefix
53     mkdir -p $out/share/frog/;
54     for f in ${languageMachines.frogdata}/share/frog/*; do
55       ln -s $f $out/share/frog/;
56     done;
58     make check
59   '';
61   meta = with lib; {
62     description = "Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch";
63     homepage = "https://languagemachines.github.io/frog";
64     license = licenses.gpl3;
65     platforms = platforms.all;
66     maintainers = with maintainers; [ roberth ];
68     longDescription = ''
69       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.
71       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.
72     '';
73   };