Unverified Commit 584f1323 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #242774 from dit7ya/waylogout

waylogout: init at unstable-2023-06-09
parents 6cee3b58 b5546fd2
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4548,6 +4548,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 { };