Skip to content

Commit 8b5aaae

Browse files
authored
swayfx-unwrapped 0.4 -> 0.5; scenefx 0.1 -> 0.2.1 (#385660)
2 parents 4aa836d + 48b45f6 commit 8b5aaae

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

pkgs/by-name/sc/scenefx/package.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
fetchFromGitHub,
55
meson,
66
ninja,
7-
wlroots_0_17,
7+
wlroots_0_18,
88
scdoc,
99
pkg-config,
1010
wayland,
@@ -21,13 +21,13 @@
2121

2222
stdenv.mkDerivation (finalAttrs: {
2323
pname = "scenefx";
24-
version = "0.1";
24+
version = "0.2.1";
2525

2626
src = fetchFromGitHub {
2727
owner = "wlrfx";
2828
repo = "scenefx";
2929
tag = finalAttrs.version;
30-
hash = "sha256-vBmunqXwGbMNiGRd372TdMU4siWhIVYn5RVYne9C7uQ=";
30+
hash = "sha256-BLIADMQwPJUtl6hFBhh5/xyYwLFDnNQz0RtgWO/Ua8s=";
3131
};
3232

3333
strictDeps = true;
@@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: {
5151
pixman
5252
wayland
5353
wayland-protocols
54-
wlroots_0_17
54+
wlroots_0_18
5555
];
5656

5757
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;

pkgs/by-name/sw/swayfx-unwrapped/package.nix

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,14 @@
2525
scenefx,
2626
wayland-scanner,
2727
xcbutilwm,
28-
wlroots_0_17,
28+
wlroots_0_18,
2929
testers,
3030
nixosTests,
3131
# Used by the NixOS module:
3232
isNixOS ? false,
3333
enableXWayland ? true,
3434
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
3535
trayEnabled ? systemdSupport,
36-
fetchpatch2,
3736
}:
3837

3938
stdenv.mkDerivation (finalAttrs: {
@@ -45,25 +44,19 @@ stdenv.mkDerivation (finalAttrs: {
4544
;
4645

4746
pname = "swayfx-unwrapped";
48-
version = "0.4";
47+
version = "0.5";
4948

5049
src = fetchFromGitHub {
5150
owner = "WillPower3309";
5251
repo = "swayfx";
5352
tag = finalAttrs.version;
54-
hash = "sha256-VT+JjQPqCIdtaLeSnRiZ3rES0KgDJR7j5Byxr+d6oRg=";
53+
hash = "sha256-gdab7zkjp/S7YVCP1t/OfOdUXZRwNvNSuRFGWEJScF8=";
5554
};
5655

5756
patches =
5857
[
5958
./load-configuration-from-etc.patch
6059

61-
(fetchpatch2 {
62-
# fix missing switch statement for newer libinput
63-
url = "https://github.com/swaywm/sway/pull/8470.patch?full_index=1";
64-
hash = "sha256-UTZ2DNEsGi5RYrgZThHkYz3AnnIl/KxieinA1WUZRq4=";
65-
})
66-
6760
(replaceVars ./fix-paths.patch {
6861
inherit swaybg;
6962
})
@@ -105,7 +98,7 @@ stdenv.mkDerivation (finalAttrs: {
10598
scenefx
10699
wayland
107100
wayland-protocols
108-
(wlroots_0_17.override { inherit (finalAttrs) enableXWayland; })
101+
(wlroots_0_18.override { inherit (finalAttrs) enableXWayland; })
109102
] ++ lib.optionals finalAttrs.enableXWayland [ xcbutilwm ];
110103

111104
mesonFlags =
@@ -122,7 +115,6 @@ stdenv.mkDerivation (finalAttrs: {
122115
in
123116
[
124117
(mesonOption "sd-bus-provider" sd-bus-provider)
125-
(mesonEnable "xwayland" finalAttrs.enableXWayland)
126118
(mesonEnable "tray" finalAttrs.trayEnabled)
127119
];
128120

0 commit comments

Comments
 (0)