Merge pull request #233999 from figsoda/plasmatube

plasma5Packages.plasmatube: add missing runtime dependency
This commit is contained in:
Weijia Wang 2023-05-25 23:02:34 +03:00 committed by GitHub
commit e1042b87a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,5 @@
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, wrapGAppsHook
, gst_all_1
@ -11,6 +10,7 @@
, mpv
, qtmultimedia
, qtquickcontrols2
, yt-dlp
}:
mkDerivation {
@ -36,6 +36,13 @@ mkDerivation {
gstreamer
]);
qtWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [ yt-dlp ])
];
preFixup = ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';