ffado: actually get rid of Qt dependency for real this time

This commit is contained in:
K900 2024-07-12 13:05:41 +03:00
parent 83881cb6e9
commit b99be9ccc7
2 changed files with 5 additions and 7 deletions

View File

@ -1,11 +1,9 @@
{
lib,
stdenv,
mkDerivation,
argp-standalone,
dbus,
dbus_cplusplus,
desktop-file-utils,
fetchurl,
glibmm,
libavc1394,
@ -18,7 +16,7 @@
scons,
which,
withMixer ? false,
wrapQtAppsHook,
qt5,
}:
let
@ -33,7 +31,7 @@ let
else
python311;
in
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "ffado";
version = "2.4.9";
@ -65,7 +63,7 @@ mkDerivation rec {
++ lib.optionals withMixer [
python
python.pkgs.pyqt5
wrapQtAppsHook
qt5.wrapQtAppsHook
];
prefixKey = "PREFIX=";

View File

@ -26753,8 +26753,8 @@ with pkgs;
fatrace = callPackage ../os-specific/linux/fatrace { };
ffado = libsForQt5.callPackage ../os-specific/linux/ffado { };
ffado-mixer = libsForQt5.callPackage ../os-specific/linux/ffado { withMixer = true; };
ffado = callPackage ../os-specific/linux/ffado { };
ffado-mixer = callPackage ../os-specific/linux/ffado { withMixer = true; };
libffado = ffado;
fbterm = callPackage ../os-specific/linux/fbterm { };