nixpkgs/pkgs/development/libraries/pocketsphinx/default.nix
Shea Levy ca116f76f9 Unmaintain a bunch of packages
Trying to take maintainership more seriously...

Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-21 22:34:41 -05:00

21 lines
492 B
Nix

{ stdenv, fetchurl, sphinxbase, pkgconfig }:
stdenv.mkDerivation rec {
name = "pocketsphinx-0.7";
src = fetchurl {
url = "mirror://sourceforge/cmusphinx/${name}.tar.gz";
sha256 = "0m94x5pridagr0hgmnidrf4z44zcya05d8fh67k0cc0mmghsq36f";
};
propagatedBuildInputs = [ sphinxbase ];
buildInputs = [ pkgconfig ];
meta = {
description = "Voice recognition library written in C";
homepage = http://cmusphinx.sourceforge.net;
license = "free-non-copyleft";
};
}