2011-04-27 23:15:42 +02:00
|
|
|
{ stdenv, fetchurl, bison, pkgconfig }:
|
2011-04-04 20:50:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-04-27 23:15:42 +02:00
|
|
|
name = "sphinxbase-0.7";
|
2011-04-04 20:50:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-04-04 20:50:30 +02:00
|
|
|
url = "mirror://sourceforge/cmusphinx/${name}.tar.gz";
|
2011-04-27 23:15:42 +02:00
|
|
|
sha256 = "0xab4ph9215rw5865gihmahbbnbi58klll5xg0il9ifld4wdjacq";
|
2011-04-04 20:50:23 +02:00
|
|
|
};
|
|
|
|
|
2011-04-27 23:15:42 +02:00
|
|
|
buildInputs = [ pkgconfig bison ];
|
2011-04-04 20:50:30 +02:00
|
|
|
|
2011-04-04 20:50:23 +02:00
|
|
|
meta = {
|
|
|
|
description = "Support Library for Pocketsphinx";
|
|
|
|
homepage = http://cmusphinx.sourceforge.net;
|
|
|
|
license = "free-non-copyleft";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
|
|
|
};
|
|
|
|
}
|