commit
be1f5be9f3
@ -2123,6 +2123,12 @@
|
|||||||
githubId = 10492681;
|
githubId = 10492681;
|
||||||
name = "Michael Hoang";
|
name = "Michael Hoang";
|
||||||
};
|
};
|
||||||
|
eonpatapon = {
|
||||||
|
email = "eon@patapon.info";
|
||||||
|
github = "eonpatapon";
|
||||||
|
githubId = 418227;
|
||||||
|
name = "Jean-Philippe Braun";
|
||||||
|
};
|
||||||
eperuffo = {
|
eperuffo = {
|
||||||
email = "info@emanueleperuffo.com";
|
email = "info@emanueleperuffo.com";
|
||||||
github = "emanueleperuffo";
|
github = "emanueleperuffo";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, meson, pkgconfig, ninja
|
{ 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
|
, traySupport ? true, libdbusmenu-gtk3
|
||||||
, pulseSupport ? false, libpulseaudio
|
, pulseSupport ? false, libpulseaudio
|
||||||
, nlSupport ? true, libnl
|
, nlSupport ? true, libnl
|
||||||
@ -9,13 +9,13 @@
|
|||||||
}:
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "waybar";
|
pname = "waybar";
|
||||||
version = "0.8.0";
|
version = "0.9.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Alexays";
|
owner = "Alexays";
|
||||||
repo = "Waybar";
|
repo = "Waybar";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0s8ck7qxka0l91ayma6amp9sc8cidi43byqgzcavi3a6id983r1z";
|
sha256 = "1w8a6jih872ry288k8ic6mjfi9ccf1jwc24wnh9p5c7w73247c2c";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -23,7 +23,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = with stdenv.lib;
|
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 traySupport libdbusmenu-gtk3
|
||||||
++ optional pulseSupport libpulseaudio
|
++ optional pulseSupport libpulseaudio
|
||||||
++ optional nlSupport libnl
|
++ optional nlSupport libnl
|
||||||
@ -42,6 +42,7 @@
|
|||||||
}
|
}
|
||||||
) ++ [
|
) ++ [
|
||||||
"-Dout=${placeholder "out"}"
|
"-Dout=${placeholder "out"}"
|
||||||
|
"-Dsystemd=disabled"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
40
pkgs/development/libraries/gtk-layer-shell/default.nix
Normal file
40
pkgs/development/libraries/gtk-layer-shell/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -11780,6 +11780,8 @@ in
|
|||||||
|
|
||||||
gtkspellmm = callPackage ../development/libraries/gtkspellmm { };
|
gtkspellmm = callPackage ../development/libraries/gtkspellmm { };
|
||||||
|
|
||||||
|
gtk-layer-shell = callPackage ../development/libraries/gtk-layer-shell { };
|
||||||
|
|
||||||
gts = callPackage ../development/libraries/gts { };
|
gts = callPackage ../development/libraries/gts { };
|
||||||
|
|
||||||
gumbo = callPackage ../development/libraries/gumbo { };
|
gumbo = callPackage ../development/libraries/gumbo { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user