mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
Merge pull request #88080 from bbigras/waybar
waybar: optionally wrap mediaplayer.py
This commit is contained in:
commit
f7f212047b
|
@ -7,6 +7,7 @@
|
|||
, udevSupport ? true, udev
|
||||
, swaySupport ? true, sway
|
||||
, mpdSupport ? true, mpd_clientlib
|
||||
, withMediaPlayer ? false, glib, gobject-introspection, python3, python38Packages, playerctl
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "waybar";
|
||||
|
@ -21,7 +22,14 @@
|
|||
|
||||
nativeBuildInputs = [
|
||||
meson ninja pkgconfig scdoc wrapGAppsHook cmake
|
||||
] ++ stdenv.lib.optional withMediaPlayer gobject-introspection;
|
||||
|
||||
propagatedBuildInputs = stdenv.lib.optionals withMediaPlayer [
|
||||
glib
|
||||
playerctl
|
||||
python38Packages.pygobject3
|
||||
];
|
||||
strictDeps = false;
|
||||
|
||||
buildInputs = with stdenv.lib;
|
||||
[ wayland wlroots gtkmm3 libinput libsigcxx jsoncpp fmt spdlog gtk-layer-shell howard-hinnant-date ]
|
||||
|
@ -46,6 +54,13 @@
|
|||
"-Dsystemd=disabled"
|
||||
];
|
||||
|
||||
preFixup = stdenv.lib.optional withMediaPlayer ''
|
||||
cp $src/resources/custom_modules/mediaplayer.py $out/bin/waybar-mediaplayer.py
|
||||
|
||||
wrapProgram $out/bin/waybar-mediaplayer.py \
|
||||
--prefix PYTHONPATH : "$PYTHONPATH:$out/${python3.sitePackages}"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Highly customizable Wayland bar for Sway and Wlroots based compositors";
|
||||
license = licenses.mit;
|
||||
|
|
Loading…
Reference in a new issue