[Backport release-26.05] sway-unwrapped: 1.11 -> 1.12 (#533818)

This commit is contained in:
Ramses 2026-06-21 08:04:16 +00:00 committed by GitHub
commit 33d02fa7da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 5 deletions

View file

@ -4295,6 +4295,12 @@
{ fingerprint = "D088 A5AF C45B 78D1 CD4F 457C 6957 B3B6 46F2 BB4E"; }
];
};
c6rg0 = {
email = "c6rg0@protonmail.com";
github = "c6rg0";
githubId = 64259221;
name = "c6rg0";
};
caarlos0 = {
name = "Carlos A Becker";
email = "carlos@becker.software";

View file

@ -20,7 +20,7 @@
libinput,
gdk-pixbuf,
librsvg,
wlroots_0_19,
wlroots_0_20,
wayland-protocols,
libdrm,
evdev-proto,
@ -36,7 +36,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "sway-unwrapped";
version = "1.11";
version = "1.12";
inherit
enableXWayland
@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "swaywm";
repo = "sway";
rev = finalAttrs.version;
hash = "sha256-xMrexVDpgkGnvAAglshsh7HjvcbU2/Q6JLUd5J487qg=";
hash = "sha256-OcF7jOOHhFPhM5APn5riy8S5jsEr9jALCVh9nBtD7Nk=";
};
patches = [
@ -96,7 +96,7 @@ stdenv.mkDerivation (finalAttrs: {
librsvg
wayland-protocols
libdrm
(wlroots_0_19.override { inherit (finalAttrs) enableXWayland; })
(wlroots_0_20.override { inherit (finalAttrs) enableXWayland; })
]
++ lib.optionals stdenv.hostPlatform.isFreeBSD [
evdev-proto
@ -139,7 +139,7 @@ stdenv.mkDerivation (finalAttrs: {
changelog = "https://github.com/swaywm/sway/releases/tag/${finalAttrs.version}";
license = lib.licenses.mit;
platforms = lib.platforms.linux ++ lib.platforms.freebsd;
maintainers = [ ];
maintainers = with lib.maintainers; [ c6rg0 ];
mainProgram = "sway";
};
})