dc1b32d020
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openfst/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.6.7 with grep in /nix/store/38nl69xxg8n8qjv95bsmypfqd5jqhdl8-openfst-1.6.7 - directory tree listing: https://gist.github.com/bf617c469da4df6bef7fc0c08bb30666
26 lines
968 B
Nix
26 lines
968 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "openfst";
|
|
version = "1.6.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.openfst.org/twiki/pub/FST/FstDownload/${name}.tar.gz";
|
|
sha256 = "1xqpc1qlvghprwih99immsjh3ba08lg754cf5icnmpkwh9nlh6p2";
|
|
};
|
|
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;
|
|
};
|
|
}
|
|
|