90 lines
2.3 KiB
Nix
90 lines
2.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, pkg-config
|
|
, ninja
|
|
, wrapGAppsHook
|
|
, wayland
|
|
, wlroots
|
|
, gtkmm3
|
|
, libsigcxx
|
|
, jsoncpp
|
|
, fmt
|
|
, scdoc
|
|
, spdlog
|
|
, gtk-layer-shell
|
|
, howard-hinnant-date, cmake
|
|
, traySupport ? true, libdbusmenu-gtk3
|
|
, pulseSupport ? true, libpulseaudio
|
|
, sndioSupport ? true, sndio
|
|
, nlSupport ? true, libnl
|
|
, udevSupport ? true, udev
|
|
, swaySupport ? true, sway
|
|
, mpdSupport ? true, libmpdclient
|
|
, withMediaPlayer ? false, glib, gobject-introspection, python3, python38Packages, playerctl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "waybar";
|
|
version = "0.9.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Alexays";
|
|
repo = "Waybar";
|
|
rev = version;
|
|
sha256 = "17cn4d3dx92v40jd9vl41smp8hh3gf5chd1j2f7l1lrpfpnllg5x";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkg-config scdoc wrapGAppsHook cmake
|
|
] ++ lib.optional withMediaPlayer gobject-introspection;
|
|
|
|
propagatedBuildInputs = lib.optionals withMediaPlayer [
|
|
glib
|
|
playerctl
|
|
python38Packages.pygobject3
|
|
];
|
|
strictDeps = false;
|
|
|
|
buildInputs = with lib;
|
|
[ wayland wlroots gtkmm3 libsigcxx jsoncpp fmt spdlog gtk-layer-shell howard-hinnant-date ]
|
|
++ optional traySupport libdbusmenu-gtk3
|
|
++ optional pulseSupport libpulseaudio
|
|
++ optional sndioSupport sndio
|
|
++ optional nlSupport libnl
|
|
++ optional udevSupport udev
|
|
++ optional swaySupport sway
|
|
++ optional mpdSupport libmpdclient;
|
|
|
|
mesonFlags = (lib.mapAttrsToList
|
|
(option: enable: "-D${option}=${if enable then "enabled" else "disabled"}")
|
|
{
|
|
dbusmenu-gtk = traySupport;
|
|
pulseaudio = pulseSupport;
|
|
sndio = sndioSupport;
|
|
libnl = nlSupport;
|
|
libudev = udevSupport;
|
|
mpd = mpdSupport;
|
|
}
|
|
) ++ [
|
|
"-Dout=${placeholder "out"}"
|
|
"-Dsystemd=disabled"
|
|
];
|
|
|
|
preFixup = 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 lib; {
|
|
description = "Highly customizable Wayland bar for Sway and Wlroots based compositors";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ FlorianFranzen minijackson synthetica lovesegfault ];
|
|
platforms = platforms.unix;
|
|
homepage = "https://github.com/alexays/waybar";
|
|
};
|
|
}
|