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 =
let
libs = [ vulkan-loader ] ++ cubeb.passthru.backendLibs;
libs = [ vulkan-loader ];
in
''
gappsWrapperArgs+=(

View file

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

View file

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