mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
160d90cb91
Diff: https://github.com/Alexays/Waybar/compare/0.10.3...0.10.4 Changelog: https://github.com/alexays/waybar/releases/tag/0.10.4
213 lines
5.0 KiB
Nix
213 lines
5.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
bash,
|
|
fetchFromGitHub,
|
|
SDL2,
|
|
alsa-lib,
|
|
catch2_3,
|
|
fftw,
|
|
glib,
|
|
gobject-introspection,
|
|
gtk-layer-shell,
|
|
gtkmm3,
|
|
howard-hinnant-date,
|
|
hyprland,
|
|
iniparser,
|
|
jsoncpp,
|
|
libdbusmenu-gtk3,
|
|
libevdev,
|
|
libinotify-kqueue,
|
|
libinput,
|
|
libjack2,
|
|
libmpdclient,
|
|
libnl,
|
|
libpulseaudio,
|
|
libsigcxx,
|
|
libxkbcommon,
|
|
meson,
|
|
ncurses,
|
|
ninja,
|
|
pipewire,
|
|
pkg-config,
|
|
playerctl,
|
|
portaudio,
|
|
python3,
|
|
scdoc,
|
|
sndio,
|
|
spdlog,
|
|
sway,
|
|
udev,
|
|
upower,
|
|
wayland,
|
|
wayland-scanner,
|
|
wireplumber,
|
|
wrapGAppsHook3,
|
|
|
|
cavaSupport ? true,
|
|
enableManpages ? stdenv.buildPlatform.canExecute stdenv.hostPlatform,
|
|
evdevSupport ? true,
|
|
experimentalPatches ? true,
|
|
hyprlandSupport ? true,
|
|
inputSupport ? true,
|
|
jackSupport ? true,
|
|
mpdSupport ? true,
|
|
mprisSupport ? stdenv.isLinux,
|
|
nlSupport ? true,
|
|
pipewireSupport ? true,
|
|
pulseSupport ? true,
|
|
rfkillSupport ? true,
|
|
runTests ? stdenv.buildPlatform.canExecute stdenv.hostPlatform,
|
|
sndioSupport ? true,
|
|
swaySupport ? true,
|
|
traySupport ? true,
|
|
udevSupport ? true,
|
|
upowerSupport ? true,
|
|
wireplumberSupport ? true,
|
|
withMediaPlayer ? mprisSupport && false,
|
|
nix-update-script,
|
|
testers,
|
|
waybar,
|
|
}:
|
|
|
|
let
|
|
# Derived from subprojects/cava.wrap
|
|
libcava.src = fetchFromGitHub {
|
|
owner = "LukashonakV";
|
|
repo = "cava";
|
|
rev = "0.10.2";
|
|
hash = "sha256-jU7RQV2txruu/nUUl0TzjK4nai7G38J1rcTjO7UXumY=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "waybar";
|
|
version = "0.10.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Alexays";
|
|
repo = "Waybar";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-/JW3WnRLpfz8j+9Zc9YkK63i8DjHrKwv9PWKIMz3MVI=";
|
|
};
|
|
|
|
postUnpack = lib.optional cavaSupport ''
|
|
pushd "$sourceRoot"
|
|
cp -R --no-preserve=mode,ownership ${libcava.src} subprojects/cava-0.10.2
|
|
patchShebangs .
|
|
popd
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wayland-scanner
|
|
wrapGAppsHook3
|
|
] ++ lib.optional withMediaPlayer gobject-introspection ++ lib.optional enableManpages scdoc;
|
|
|
|
propagatedBuildInputs = lib.optionals withMediaPlayer [
|
|
glib
|
|
playerctl
|
|
python3.pkgs.pygobject3
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
gtk-layer-shell
|
|
gtkmm3
|
|
howard-hinnant-date
|
|
jsoncpp
|
|
libsigcxx
|
|
libxkbcommon
|
|
spdlog
|
|
wayland
|
|
]
|
|
++ lib.optionals cavaSupport [
|
|
SDL2
|
|
alsa-lib
|
|
fftw
|
|
iniparser
|
|
ncurses
|
|
portaudio
|
|
]
|
|
++ lib.optional evdevSupport libevdev
|
|
++ lib.optional hyprlandSupport hyprland
|
|
++ lib.optional inputSupport libinput
|
|
++ lib.optional jackSupport libjack2
|
|
++ lib.optional mpdSupport libmpdclient
|
|
++ lib.optional mprisSupport playerctl
|
|
++ lib.optional nlSupport libnl
|
|
++ lib.optional pulseSupport libpulseaudio
|
|
++ lib.optional sndioSupport sndio
|
|
++ lib.optional swaySupport sway
|
|
++ lib.optional traySupport libdbusmenu-gtk3
|
|
++ lib.optional udevSupport udev
|
|
++ lib.optional upowerSupport upower
|
|
++ lib.optional wireplumberSupport wireplumber
|
|
++ lib.optional (cavaSupport || pipewireSupport) pipewire
|
|
++ lib.optional (!stdenv.isLinux) libinotify-kqueue;
|
|
|
|
nativeCheckInputs = [ catch2_3 ];
|
|
doCheck = runTests;
|
|
|
|
mesonFlags =
|
|
(lib.mapAttrsToList lib.mesonEnable {
|
|
"cava" = cavaSupport && lib.asserts.assertMsg sndioSupport "Sndio support is required for Cava";
|
|
"dbusmenu-gtk" = traySupport;
|
|
"jack" = jackSupport;
|
|
"libevdev" = evdevSupport;
|
|
"libinput" = inputSupport;
|
|
"libnl" = nlSupport;
|
|
"libudev" = udevSupport;
|
|
"man-pages" = enableManpages;
|
|
"mpd" = mpdSupport;
|
|
"mpris" = mprisSupport;
|
|
"pipewire" = pipewireSupport;
|
|
"pulseaudio" = pulseSupport;
|
|
"rfkill" = rfkillSupport;
|
|
"sndio" = sndioSupport;
|
|
"systemd" = false;
|
|
"tests" = runTests;
|
|
"upower_glib" = upowerSupport;
|
|
"wireplumber" = wireplumberSupport;
|
|
})
|
|
++ lib.optional experimentalPatches (lib.mesonBool "experimental" true);
|
|
|
|
postPatch = ''
|
|
substituteInPlace include/util/command.hpp \
|
|
--replace-fail /bin/sh ${lib.getExe' bash "sh"}
|
|
'';
|
|
|
|
preFixup = lib.optionalString 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}"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
package = waybar;
|
|
version = "v${finalAttrs.version}";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/alexays/waybar";
|
|
description = "Highly customizable Wayland bar for Sway and Wlroots based compositors";
|
|
changelog = "https://github.com/alexays/waybar/releases/tag/${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "waybar";
|
|
maintainers = with lib.maintainers; [
|
|
FlorianFranzen
|
|
lovesegfault
|
|
minijackson
|
|
rodrgz
|
|
synthetica
|
|
khaneliman
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|