2017-08-08 10:34:09 +01:00
|
|
|
|
{ stdenv, fetchurl
|
|
|
|
|
, automake, autoconf, libtool, pkgconfig, autoconf-archive
|
2018-03-11 06:39:04 +00:00
|
|
|
|
, libxml2, icu, bzip2, libtar
|
2017-08-08 10:34:09 +01:00
|
|
|
|
, languageMachines }:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
release = builtins.fromJSON (builtins.readFile ./release-info/LanguageMachines-libfolia.json);
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-05-24 05:37:33 +01:00
|
|
|
|
name = "libfolia-${release.version}";
|
2017-08-08 10:34:09 +01:00
|
|
|
|
version = release.version;
|
|
|
|
|
src = fetchurl { inherit (release) url sha256;
|
|
|
|
|
name = "libfolia-${release.version}.tar.gz"; };
|
2017-09-05 22:26:13 +01:00
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-03-11 06:39:04 +00:00
|
|
|
|
buildInputs = [ automake autoconf bzip2 libtool autoconf-archive libtar libxml2 icu languageMachines.ticcutils ];
|
2017-08-08 10:34:09 +01:00
|
|
|
|
preConfigure = "sh bootstrap.sh";
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "A C++ API for FoLiA documents; an XML-based linguistic annotation format.";
|
|
|
|
|
homepage = https://proycon.github.io/folia/;
|
|
|
|
|
license = licenses.gpl3;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = with maintainers; [ roberth ];
|
|
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
|
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.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|