mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
02297beade
Lots of packages are missing versions in their name. This adds them where appropriate. These were found with this command: $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$' See issue #41007.
32 lines
1.2 KiB
Nix
32 lines
1.2 KiB
Nix
{ stdenv, fetchurl
|
||
, automake, autoconf, libtool, pkgconfig, autoconf-archive
|
||
, libxml2, icu, bzip2, libtar
|
||
, languageMachines }:
|
||
|
||
let
|
||
release = builtins.fromJSON (builtins.readFile ./release-info/LanguageMachines-libfolia.json);
|
||
in
|
||
|
||
stdenv.mkDerivation {
|
||
name = "libfolia-${release.version}";
|
||
version = release.version;
|
||
src = fetchurl { inherit (release) url sha256;
|
||
name = "libfolia-${release.version}.tar.gz"; };
|
||
nativeBuildInputs = [ pkgconfig ];
|
||
buildInputs = [ automake autoconf bzip2 libtool autoconf-archive libtar libxml2 icu languageMachines.ticcutils ];
|
||
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.
|
||
'';
|
||
};
|
||
|
||
}
|