Merge pull request #242774 from dit7ya/waylogout

waylogout: init at unstable-2023-06-09

authored by Pol Dellaiera and committed by GitHub 584f1323 6cee3b58

+50
+48
pkgs/tools/wayland/waylogout/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , meson 5 + , ninja 6 + , pkg-config 7 + , wayland 8 + , wayland-protocols 9 + , libxkbcommon 10 + , cairo 11 + , gdk-pixbuf 12 + , scdoc 13 + }: 14 + 15 + stdenv.mkDerivation { 16 + pname = "waylogout"; 17 + version = "unstable-2023-06-09"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "loserMcloser"; 21 + repo = "waylogout"; 22 + rev = "f90e1b8b0f67a2694fafca7beb32828493f3f78e"; 23 + hash = "sha256-YQtX4t6q2NybuKU3lVcn5XhC0nXcPfEbcXbuFmDZOrw="; 24 + }; 25 + 26 + nativeBuildInputs = [ 27 + pkg-config 28 + meson 29 + ninja 30 + scdoc 31 + ]; 32 + 33 + buildInputs = [ 34 + wayland 35 + wayland-protocols 36 + libxkbcommon 37 + cairo 38 + gdk-pixbuf 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "A graphical logout/suspend/reboot/shutdown dialog for wayland"; 43 + homepage = "https://github.com/loserMcloser/waylogout"; 44 + license = licenses.mit; 45 + maintainers = with maintainers; [ dit7ya ]; 46 + platforms = platforms.linux; 47 + }; 48 + }
+2
pkgs/top-level/all-packages.nix
··· 4548 4549 wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { }; 4550 4551 waynergy = callPackage ../tools/wayland/waynergy { }; 4552 4553 wayout = callPackage ../tools/wayland/wayout { };
··· 4548 4549 wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { }; 4550 4551 + waylogout = callPackage ../tools/wayland/waylogout { }; 4552 + 4553 waynergy = callPackage ../tools/wayland/waynergy { }; 4554 4555 wayout = callPackage ../tools/wayland/wayout { };