1{ stdenv, fetchurl, sphinxbase, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "pocketsphinx-0.8";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/cmusphinx/${name}.tar.gz";
8 sha256 = "0ynf5ik4ib2d3ha3r4i8ywpr2dz5i6v51hmfl8kgzj4i7l44qk47";
9 };
10
11 propagatedBuildInputs = [ sphinxbase ];
12
13 buildInputs = [ pkgconfig ];
14
15 meta = {
16 description = "Voice recognition library written in C";
17 homepage = http://cmusphinx.sourceforge.net;
18 license = stdenv.lib.licenses.free;
19 };
20}