pocketsphinx: remove

main
Armeen Mahdian 2 years ago
parent 3d957ef33b
commit 33207688a3
  1. 48
      pkgs/development/libraries/pocketsphinx/default.nix
  2. 1
      pkgs/top-level/aliases.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -1,48 +0,0 @@
{ lib, stdenv
, fetchurl
, sphinxbase
, pkg-config
, python27 # >= 2.6
, swig2 # 2.0
}:
stdenv.mkDerivation rec {
pname = "pocketsphinx";
version = "5prealpha";
src = fetchurl {
url = "mirror://sourceforge/cmusphinx/pocketsphinx-${version}.tar.gz";
sha256 = "1n9yazzdgvpqgnfzsbl96ch9cirayh74jmpjf7svs4i7grabanzg";
};
propagatedBuildInputs = [ sphinxbase ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ python27 swig2 ];
meta = {
description = "Voice recognition library written in C";
homepage = "http://cmusphinx.sourceforge.net";
license = lib.licenses.free;
platforms = lib.platforms.linux;
};
}
/* Example usage:
1.
$ cat << EOF > vocabulary.txt
oh mighty computer /1e-40/
hello world /1e-30/
EOF
2.
$ pocketsphinx_continuous -inmic yes -kws vocabulary.txt 2> /dev/null
# after you say "hello world":
hello world
...
*/

@ -999,6 +999,7 @@ mapAliases ({
plexpy = throw "'plexpy' has been renamed to/replaced by 'tautulli'"; # Converted to throw 2022-02-22
pltScheme = racket; # just to be sure
pmtools = throw "'pmtools' has been renamed to/replaced by 'acpica-tools'"; # Converted to throw 2022-02-22
pocketsphinx = throw "pocketsphinx has been removed: unmaintained"; # Added 2022-04-24
polarssl = throw "'polarssl' has been renamed to/replaced by 'mbedtls'"; # Converted to throw 2022-02-22
polysh = throw "polysh has been removed from nixpkgs as the upstream has abandoned the project"; # Added 2022-01-01
poppler_qt5 = throw "'poppler_qt5' has been renamed to/replaced by 'libsForQt5.poppler'"; # Converted to throw 2022-02-22

@ -19929,8 +19929,6 @@ with pkgs;
plib = callPackage ../development/libraries/plib { };
pocketsphinx = callPackage ../development/libraries/pocketsphinx { };
poco = callPackage ../development/libraries/poco { };
podofo = callPackage ../development/libraries/podofo { };

Loading…
Cancel
Save