mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
treewide: remove cubeb.passthru.backendLibs
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
parent
709d5b4e5c
commit
a0841af357
3 changed files with 2 additions and 8 deletions
|
@ -150,7 +150,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
|
|
||||||
preFixup =
|
preFixup =
|
||||||
let
|
let
|
||||||
libs = [ vulkan-loader ] ++ cubeb.passthru.backendLibs;
|
libs = [ vulkan-loader ];
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
gappsWrapperArgs+=(
|
gappsWrapperArgs+=(
|
||||||
|
|
|
@ -67,8 +67,6 @@ stdenv.mkDerivation {
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
# For downstream users when lazyLoad is true
|
|
||||||
backendLibs = [ ];
|
|
||||||
updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
|
updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue