about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Shpilkin <ashpilkin@gmail.com>2022-10-10 18:22:58 +0300
committerAlexander Shpilkin <ashpilkin@gmail.com>2022-10-10 18:22:58 +0300
commit81738843e9511ef7609a46496ea8b07cacde1107 (patch)
tree692ef14179b0eb8b92ec5efab46081f62d95e5b7
parent8a4c3732163f847455b3e6940f24cabe361829e4 (diff)
parlatype: disable pocketsphinx integration
-rw-r--r--pkgs/applications/audio/parlatype/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/parlatype/default.nix b/pkgs/applications/audio/parlatype/default.nix
index c1bb1102bf1b6..ca18acd048cd7 100644
--- a/pkgs/applications/audio/parlatype/default.nix
+++ b/pkgs/applications/audio/parlatype/default.nix
@@ -33,8 +33,6 @@ stdenv.mkDerivation rec {
     gst_all_1.gst-plugins-bad
     gst_all_1.gst-plugins-ugly
     gst_all_1.gst-libav
-    sphinxbase
-    pocketsphinx
     glib
     gsettings-desktop-schemas
     hicolor-icon-theme
@@ -47,6 +45,8 @@ stdenv.mkDerivation rec {
 
   doCheck = false;
 
+  mesonFlags = [ "-Dasr=false" ];
+
   buildPhase = ''
     export GST_PLUGIN_SYSTEM_PATH_1_0="$out/lib/gstreamer-1.0/:$GST_PLUGIN_SYSTEM_PATH_1_0"
   '';
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
     '';
     homepage = "https://gkarsay.github.io/parlatype/";
     license = licenses.gpl3Plus;
-    maintainers = [ maintainers.melchips ];
+    maintainers = with maintainers; [ alexshpilkin melchips ];
     platforms = platforms.linux;
   };
 }