mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
audiotube: Add gst wrapping to fix playback
This commit is contained in:
parent
371e0bbc7c
commit
832b15fcd6
1 changed files with 11 additions and 1 deletions
|
@ -3,7 +3,9 @@
|
|||
|
||||
, extra-cmake-modules
|
||||
, gcc11
|
||||
, wrapGAppsHook
|
||||
|
||||
, gst_all_1
|
||||
, kcoreaddons
|
||||
, kcrash
|
||||
, ki18n
|
||||
|
@ -19,6 +21,7 @@ mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
wrapGAppsHook
|
||||
gcc11 # doesn't build with GCC 9 from stdenv on aarch64
|
||||
python3Packages.wrapPython
|
||||
python3Packages.pybind11
|
||||
|
@ -32,7 +35,12 @@ mkDerivation rec {
|
|||
qtimageformats
|
||||
qtmultimedia
|
||||
qtquickcontrols2
|
||||
] ++ pythonPath;
|
||||
] ++ (with gst_all_1; [
|
||||
gst-plugins-bad
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
gstreamer
|
||||
]) ++ pythonPath;
|
||||
|
||||
pythonPath = with python3Packages; [
|
||||
yt-dlp
|
||||
|
@ -42,7 +50,9 @@ mkDerivation rec {
|
|||
preFixup = ''
|
||||
buildPythonPath "$pythonPath"
|
||||
qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH")
|
||||
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||
'';
|
||||
dontWrapGApps = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Client for YouTube Music";
|
||||
|
|
Loading…
Reference in a new issue