nixpkgs-suyu/pkgs/applications/misc/waybar/default.nix

72 lines
2.4 KiB
Nix
Raw Normal View History

2019-11-17 12:11:35 +01:00
{ stdenv, fetchFromGitHub, meson, pkgconfig, ninja, wrapGAppsHook
, wayland, wlroots, gtkmm3, libsigcxx, jsoncpp, fmt, scdoc, spdlog, gtk-layer-shell
, howard-hinnant-date, cmake
2019-01-26 16:43:16 +01:00
, traySupport ? true, libdbusmenu-gtk3
, pulseSupport ? true, libpulseaudio
2019-01-26 16:43:16 +01:00
, nlSupport ? true, libnl
2019-03-26 16:37:24 +01:00
, udevSupport ? true, udev
2019-01-26 16:43:16 +01:00
, swaySupport ? true, sway
2019-05-01 11:25:30 +02:00
, mpdSupport ? true, mpd_clientlib
2020-04-18 19:40:29 +02:00
, withMediaPlayer ? false, glib, gobject-introspection, python3, python38Packages, playerctl
2019-01-26 16:43:16 +01:00
}:
stdenv.mkDerivation rec {
2019-06-10 14:35:06 +02:00
pname = "waybar";
version = "0.9.4";
2019-01-26 16:43:16 +01:00
src = fetchFromGitHub {
owner = "Alexays";
repo = "Waybar";
rev = version;
sha256 = "038vnma7y7z81caywp45yr364bc1aq8d01j5vycyiyfv33nm76fy";
2019-01-26 16:43:16 +01:00
};
nativeBuildInputs = [
meson ninja pkgconfig scdoc wrapGAppsHook cmake
2020-04-18 19:40:29 +02:00
] ++ stdenv.lib.optional withMediaPlayer gobject-introspection;
propagatedBuildInputs = stdenv.lib.optionals withMediaPlayer [
glib
playerctl
python38Packages.pygobject3
2019-01-26 16:43:16 +01:00
];
2020-04-18 19:40:29 +02:00
strictDeps = false;
2019-01-26 16:43:16 +01:00
buildInputs = with stdenv.lib;
[ wayland wlroots gtkmm3 libsigcxx jsoncpp fmt spdlog gtk-layer-shell howard-hinnant-date ]
2019-01-26 16:43:16 +01:00
++ optional traySupport libdbusmenu-gtk3
++ optional pulseSupport libpulseaudio
++ optional nlSupport libnl
2019-03-26 16:37:24 +01:00
++ optional udevSupport udev
2019-05-01 11:25:30 +02:00
++ optional swaySupport sway
++ optional mpdSupport mpd_clientlib;
2019-01-26 16:43:16 +01:00
2019-06-04 21:15:29 +02:00
mesonFlags = (stdenv.lib.mapAttrsToList
(option: enable: "-D${option}=${if enable then "enabled" else "disabled"}")
{
dbusmenu-gtk = traySupport;
pulseaudio = pulseSupport;
libnl = nlSupport;
libudev = udevSupport;
mpd = mpdSupport;
}
) ++ [
2019-01-26 16:43:16 +01:00
"-Dout=${placeholder "out"}"
2019-12-28 16:09:15 +01:00
"-Dsystemd=disabled"
2019-01-26 16:43:16 +01:00
];
2020-04-18 19:40:29 +02:00
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}"
'';
2019-01-26 16:43:16 +01:00
meta = with stdenv.lib; {
description = "Highly customizable Wayland bar for Sway and Wlroots based compositors";
license = licenses.mit;
2019-06-10 14:36:22 +02:00
maintainers = with maintainers; [ FlorianFranzen minijackson synthetica ];
2019-01-26 16:43:16 +01:00
platforms = platforms.unix;
homepage = "https://github.com/alexays/waybar";
2019-01-26 16:43:16 +01:00
};
}