nixpkgs/pkgs/development/libraries/openfst/default.nix

25 lines
949 B
Nix
Raw Normal View History

2017-08-22 09:39:22 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "openfst";
2020-05-06 09:15:44 +02:00
version = "1.7.6";
2017-08-22 09:39:22 +02:00
src = fetchurl {
url = "http://www.openfst.org/twiki/pub/FST/FstDownload/${pname}-${version}.tar.gz";
2020-05-06 09:15:44 +02:00
sha256 = "03hs0196qbjfbviqn6nnb7igvv3cnpxyizlwlzmx88a6fhiq97bm";
2017-08-22 09:39:22 +02:00
};
meta = {
description = "Library for working with finite-state transducers";
longDescription = ''
Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
FSTs have key applications in speech recognition and synthesis, machine translation, optical character recognition,
pattern matching, string processing, machine learning, information extraction and retrieval among others
'';
homepage = "http://www.openfst.org/twiki/bin/view/FST/WebHome";
2017-08-22 09:39:22 +02:00
license = stdenv.lib.licenses.asl20;
maintainers = [ stdenv.lib.maintainers.dfordivam ];
platforms = stdenv.lib.platforms.unix;
2017-08-22 09:39:22 +02:00
};
}