Merge pull request #76609 from eonpatapon/waybar-0.9.0

Waybar 0.9.0
This commit is contained in:
Maximilian Bosch 2019-12-29 14:04:14 +01:00 committed by GitHub
commit be1f5be9f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 53 additions and 4 deletions

View File

@ -2123,6 +2123,12 @@
githubId = 10492681;
name = "Michael Hoang";
};
eonpatapon = {
email = "eon@patapon.info";
github = "eonpatapon";
githubId = 418227;
name = "Jean-Philippe Braun";
};
eperuffo = {
email = "info@emanueleperuffo.com";
github = "emanueleperuffo";

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, meson, pkgconfig, ninja
, wayland, wlroots, gtkmm3, libinput, libsigcxx, jsoncpp, fmt, scdoc, spdlog
, wayland, wlroots, gtkmm3, libinput, libsigcxx, jsoncpp, fmt, scdoc, spdlog, gtk-layer-shell
, traySupport ? true, libdbusmenu-gtk3
, pulseSupport ? false, libpulseaudio
, nlSupport ? true, libnl
@ -9,13 +9,13 @@
}:
stdenv.mkDerivation rec {
pname = "waybar";
version = "0.8.0";
version = "0.9.0";
src = fetchFromGitHub {
owner = "Alexays";
repo = "Waybar";
rev = version;
sha256 = "0s8ck7qxka0l91ayma6amp9sc8cidi43byqgzcavi3a6id983r1z";
sha256 = "1w8a6jih872ry288k8ic6mjfi9ccf1jwc24wnh9p5c7w73247c2c";
};
nativeBuildInputs = [
@ -23,7 +23,7 @@
];
buildInputs = with stdenv.lib;
[ wayland wlroots gtkmm3 libinput libsigcxx jsoncpp fmt spdlog ]
[ wayland wlroots gtkmm3 libinput libsigcxx jsoncpp fmt spdlog gtk-layer-shell ]
++ optional traySupport libdbusmenu-gtk3
++ optional pulseSupport libpulseaudio
++ optional nlSupport libnl
@ -42,6 +42,7 @@
}
) ++ [
"-Dout=${placeholder "out"}"
"-Dsystemd=disabled"
];
meta = with stdenv.lib; {

View File

@ -0,0 +1,40 @@
{ stdenv
, fetchFromGitHub
, meson
, ninja
, pkgconfig
, wayland
, gtk3
, gobject-introspection
}:
stdenv.mkDerivation rec {
pname = "gtk-layer-shell";
version = "0.1.0";
src = fetchFromGitHub {
owner = "wmww";
repo = "gtk-layer-shell";
rev = "v${version}";
sha256 = "1fwvlbwp5w1zly6mksvlzbx18ikq4bh7pdj9q0k94qlj6x2zdwg8";
};
nativeBuildInputs = [
meson ninja pkgconfig
];
buildInputs = [
wayland gtk3 gobject-introspection
];
mesonFlags = [
"-Dout=${placeholder "out"}"
];
meta = with stdenv.lib; {
description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol";
license = licenses.mit;
maintainers = with maintainers; [ eonpatapon ];
platforms = platforms.unix;
};
}

View File

@ -11780,6 +11780,8 @@ in
gtkspellmm = callPackage ../development/libraries/gtkspellmm { };
gtk-layer-shell = callPackage ../development/libraries/gtk-layer-shell { };
gts = callPackage ../development/libraries/gts { };
gumbo = callPackage ../development/libraries/gumbo { };