ecc9946a81
Semi-automatic update. These checks were done: - built on NixOS - ran `/nix/store/4yq76v4x9kkmwqmvrcxh89kh1lp96gg0-openfst-1.6.6/bin/fstcompile help` got 0 exit code - found 1.6.6 with grep in /nix/store/4yq76v4x9kkmwqmvrcxh89kh1lp96gg0-openfst-1.6.6 - found 1.6.6 in filename of file in /nix/store/4yq76v4x9kkmwqmvrcxh89kh1lp96gg0-openfst-1.6.6
26 lines
968 B
Nix
26 lines
968 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "openfst";
|
|
version = "1.6.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.openfst.org/twiki/pub/FST/FstDownload/${name}.tar.gz";
|
|
sha256 = "1b13nzf9xh1iv0k8z7sdfs9ya2ykf0gzjiixpb1qn3bydck6ppdm";
|
|
};
|
|
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;
|
|
};
|
|
}
|
|
|