nixpkgs/pkgs/development/libraries/pocketsphinx/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

21 lines
497 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 = stdenv.lib.licenses.free;
};
}