waylogout: init at unstable-2023-06-09
This commit is contained in:
parent
8b92746f77
commit
b5546fd25b
2 changed files with 50 additions and 0 deletions
48
pkgs/tools/wayland/waylogout/default.nix
Normal file
48
pkgs/tools/wayland/waylogout/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, wayland
|
||||
, wayland-protocols
|
||||
, libxkbcommon
|
||||
, cairo
|
||||
, gdk-pixbuf
|
||||
, scdoc
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "waylogout";
|
||||
version = "unstable-2023-06-09";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "loserMcloser";
|
||||
repo = "waylogout";
|
||||
rev = "f90e1b8b0f67a2694fafca7beb32828493f3f78e";
|
||||
hash = "sha256-YQtX4t6q2NybuKU3lVcn5XhC0nXcPfEbcXbuFmDZOrw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
scdoc
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
wayland
|
||||
wayland-protocols
|
||||
libxkbcommon
|
||||
cairo
|
||||
gdk-pixbuf
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A graphical logout/suspend/reboot/shutdown dialog for wayland";
|
||||
homepage = "https://github.com/loserMcloser/waylogout";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dit7ya ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4510,6 +4510,8 @@ with pkgs;
|
|||
|
||||
wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { };
|
||||
|
||||
waylogout = callPackage ../tools/wayland/waylogout { };
|
||||
|
||||
waynergy = callPackage ../tools/wayland/waynergy { };
|
||||
|
||||
wayout = callPackage ../tools/wayland/wayout { };
|
||||
|
|
Loading…
Reference in a new issue