linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / pocketsphinx / default.nix
blob18d5d0bcfa22b9a6f559c938b077c70a311e3cb5
1 { lib, stdenv
2 , fetchurl
3 , sphinxbase
4 , pkg-config
5 , python27 # >= 2.6
6 , swig2 # 2.0
7 }:
9 stdenv.mkDerivation rec {
10   name = "pocketsphinx-5prealpha";
12   src = fetchurl {
13     url = "mirror://sourceforge/cmusphinx/${name}.tar.gz";
14     sha256 = "1n9yazzdgvpqgnfzsbl96ch9cirayh74jmpjf7svs4i7grabanzg";
15   };
17   propagatedBuildInputs = [ sphinxbase ];
19   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [ python27 swig2 ];
22   meta = {
23     description = "Voice recognition library written in C";
24     homepage = "http://cmusphinx.sourceforge.net";
25     license = lib.licenses.free;
26     platforms = lib.platforms.linux;
27   };
30 /* Example usage:
35 $ cat << EOF > vocabulary.txt
36 oh mighty computer /1e-40/
37 hello world /1e-30/
38 EOF
42 $ pocketsphinx_continuous -inmic yes -kws vocabulary.txt 2> /dev/null
43 # after you say "hello world":
44 hello world
45 ...