1 { lib, stdenv, fetchurl, autoreconfHook }:
3 stdenv.mkDerivation rec {
8 url = "http://www.openfst.org/twiki/pub/FST/FstDownload/${pname}-${version}.tar.gz";
9 sha256 = "sha256-3ph782JHIcXVujIa+VdRiY5PS7Qcijbi1k8GJ2Vti0I=";
13 "--enable-compact-fsts"
17 "--enable-linear-fsts"
18 "--enable-lookahead-fsts"
24 enableParallelBuilding = true;
26 nativeBuildInputs = [ autoreconfHook ];
29 description = "Library for working with finite-state transducers";
31 Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
32 FSTs have key applications in speech recognition and synthesis, machine translation, optical character recognition,
33 pattern matching, string processing, machine learning, information extraction and retrieval among others
35 homepage = "https://www.openfst.org/twiki/bin/view/FST/WebHome";
36 license = licenses.asl20;
37 maintainers = [ maintainers.dfordivam ];
38 platforms = platforms.unix;