openfst: init at 1.6.3 (#28430)
This commit is contained in:
parent
cd85a704a5
commit
e5a43bd408
|
@ -144,6 +144,7 @@
|
||||||
desiderius = "Didier J. Devroye <didier@devroye.name>";
|
desiderius = "Didier J. Devroye <didier@devroye.name>";
|
||||||
devhell = "devhell <\"^\"@regexmail.net>";
|
devhell = "devhell <\"^\"@regexmail.net>";
|
||||||
dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>";
|
dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>";
|
||||||
|
dfordivam = "Divam <dfordivam+nixpkgs@gmail.com>";
|
||||||
dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>";
|
dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>";
|
||||||
dgonyeo = "Derek Gonyeo <derek@gonyeo.com>";
|
dgonyeo = "Derek Gonyeo <derek@gonyeo.com>";
|
||||||
dipinhora = "Dipin Hora <dipinhora+github@gmail.com>";
|
dipinhora = "Dipin Hora <dipinhora+github@gmail.com>";
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "openfst";
|
||||||
|
version = "1.6.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.openfst.org/twiki/pub/FST/FstDownload/${name}.tar.gz";
|
||||||
|
sha256 = "5c28b6ccd017fc6ff94ebd0c73ed8ab37d48f563dab1c603856fb05bc9333d99";
|
||||||
|
};
|
||||||
|
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;
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.dfordivam ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -19225,6 +19225,8 @@ with pkgs;
|
||||||
|
|
||||||
xtermcontrol = callPackage ../applications/misc/xtermcontrol {};
|
xtermcontrol = callPackage ../applications/misc/xtermcontrol {};
|
||||||
|
|
||||||
|
openfst = callPackage ../development/libraries/openfst {};
|
||||||
|
|
||||||
# `recurseIntoAttrs` for sake of hydra, not nix-env
|
# `recurseIntoAttrs` for sake of hydra, not nix-env
|
||||||
tests = recurseIntoAttrs {
|
tests = recurseIntoAttrs {
|
||||||
macOSSierraShared = callPackage ../test/macos-sierra-shared {};
|
macOSSierraShared = callPackage ../test/macos-sierra-shared {};
|
||||||
|
|
Loading…
Reference in New Issue