python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / languagemachines / libfolia.nix
blob6cc5bcade20501494d0e1fbcc326cd28e8f90c98
1 { lib, stdenv, fetchurl
2 , automake, autoconf, libtool, pkg-config, autoconf-archive
3 , libxml2, icu, bzip2, libtar
4 , languageMachines }:
6 let
7   release = lib.importJSON ./release-info/LanguageMachines-libfolia.json;
8 in
10 stdenv.mkDerivation {
11   pname = "libfolia";
12   version = release.version;
13   src = fetchurl { inherit (release) url sha256;
14                    name = "libfolia-${release.version}.tar.gz"; };
15   nativeBuildInputs = [ pkg-config automake autoconf ];
16   buildInputs = [ bzip2 libtool autoconf-archive libtar libxml2 icu languageMachines.ticcutils ];
17   preConfigure = "sh bootstrap.sh";
19   # compat with icu61+ https://github.com/unicode-org/icu/blob/release-64-2/icu4c/readme.html#L554
20   CXXFLAGS = [ "-DU_USING_ICU_NAMESPACE=1" ];
22   meta = with lib; {
23     description = "A C++ API for FoLiA documents; an XML-based linguistic annotation format.";
24     homepage    = "https://proycon.github.io/folia/";
25     license     = licenses.gpl3;
26     platforms   = platforms.all;
27     maintainers = with maintainers; [ roberth ];
29     longDescription = ''
30       A high-level C++ API to read, manipulate, and create FoLiA documents. FoLiA is an XML-based annotation format, suitable for the representation of linguistically annotated language resources. FoLiA’s intended use is as a format for storing and/or exchanging language resources, including corpora.
31     '';
32   };