From 81738843e9511ef7609a46496ea8b07cacde1107 Mon Sep 17 00:00:00 2001 From: Alexander Shpilkin Date: Mon, 10 Oct 2022 18:22:58 +0300 Subject: [PATCH] parlatype: disable pocketsphinx integration --- pkgs/applications/audio/parlatype/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/parlatype/default.nix b/pkgs/applications/audio/parlatype/default.nix index c1bb1102bf1b..ca18acd048cd 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; }; }