8 stdenv.mkDerivation rec {
9 pname = "phonetisaurus";
12 src = fetchFromGitHub {
13 owner = "AdolfVonKleist";
16 sha256 = "1b18s5zz0l0fhqh9n9jnmgjz2hzprwzf6hx5a12zibmmam3qyriv";
19 enableParallelBuilding = true;
21 nativeBuildInputs = [ pkg-config ];
23 buildInputs = [ python3 openfst ];
26 description = "Framework for Grapheme-to-phoneme models for speech recognition using the OpenFst framework";
27 inherit (src.meta) homepage;
28 license = licenses.bsd3;
29 maintainers = with maintainers; [ mic92 ];
30 platforms = platforms.unix;