mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ffado: actually get rid of Qt dependency for real this time
This commit is contained in:
parent
83881cb6e9
commit
b99be9ccc7
@ -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=";
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user