gnu: Add openfst-for-vosk.

* gnu/packages/machine-learning.scm (openfst-for-vosk): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Nicolas Graves 2022-09-29 11:00:17 +02:00 committed by Ludovic Courtès
parent f36522416e
commit 9ca6416a19
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -583,6 +583,22 @@ (define-public openfst-1.7.3
(arguments '(#:configure-flags '("--enable-ngram-fsts" "CXXFLAGS=-std=c++14")
#:make-flags '("CXXFLAGS=-std=c++14")))))
(define openfst-for-vosk
(package
(inherit openfst)
(version "1.8.0")
(source
(origin
(method url-fetch)
(uri (string-append "http://www.openfst.org/twiki/pub/FST/"
"FstDownload/openfst-" version ".tar.gz"))
(sha256
(base32 "0h2lfhhihg63b804hrcljnkggijbjmp84i5g8q735wb09y9z2c4p"))))
(arguments
'(#:configure-flags
'("--enable-shared" "--enable-far" "--enable-ngram-fsts"
"--enable-lookahead-fsts" "--with-pic" "--disable-bin")))))
(define-public shogun
(package
(name "shogun")