treewide: remove cubeb.passthru.backendLibs

Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
Marcin Serwin 2025-05-24 18:17:21 +02:00
parent 709d5b4e5c
commit a0841af357
No known key found for this signature in database
GPG key ID: DACFAC4EA0B194E0
3 changed files with 2 additions and 8 deletions

View file

@ -150,7 +150,7 @@ stdenv.mkDerivation (finalAttrs: {
preFixup = preFixup =
let let
libs = [ vulkan-loader ] ++ cubeb.passthru.backendLibs; libs = [ vulkan-loader ];
in in
'' ''
gappsWrapperArgs+=( gappsWrapperArgs+=(

View file

@ -67,8 +67,6 @@ stdenv.mkDerivation {
]; ];
passthru = { passthru = {
# For downstream users when lazyLoad is true
backendLibs = [ ];
updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
}; };

View file

@ -40,17 +40,13 @@ stdenv.mkDerivation (finalAttrs: {
curl curl
ffmpeg ffmpeg
cubeb cubeb
] ++ cubeb.passthru.backendLibs; ];
# Correct qml import path # Correct qml import path
postInstall = '' postInstall = ''
mv $out/lib/qt6 $out/lib/qt-6 mv $out/lib/qt6 $out/lib/qt-6
''; '';
qtWrapperArgs = [
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath cubeb.passthru.backendLibs}"
];
meta = { meta = {
description = "Unofficial Qt client for netease cloud music"; description = "Unofficial Qt client for netease cloud music";
homepage = "https://github.com/hypengw/Qcm"; homepage = "https://github.com/hypengw/Qcm";