about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorrewine <luhongxu@deepin.org>2023-11-01 16:21:01 +0800
committerrewine <luhongxu@deepin.org>2023-11-28 11:18:33 +0800
commit898a47c354e83f860b8ed1f60d5d3146dfa6dc8f (patch)
tree72c9edfd6ce1d6847b292295ee35197324fc256b /pkgs/applications/window-managers
parent6620eab212514dc29312c673d94eb48f68b12e31 (diff)
weston: 12.0.2 -> 13.0.0
- [alpha] https://lists.freedesktop.org/archives/wayland-devel/2023-October/043147.html
- [beta] https://lists.freedesktop.org/archives/wayland-devel/2023-October/043229.html
- [RC1]  https://lists.freedesktop.org/archives/wayland-devel/2023-November/043244.html
- [RC2] https://lists.freedesktop.org/archives/wayland-devel/2023-November/043312.html
- [RC3] https://lists.freedesktop.org/archives/wayland-devel/2023-November/043316.html
- [official release] https://lists.freedesktop.org/archives/wayland-devel/2023-November/043326.html
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/weston/default.nix16
1 files changed, 3 insertions, 13 deletions
diff --git a/pkgs/applications/window-managers/weston/default.nix b/pkgs/applications/window-managers/weston/default.nix
index 3d2c720e137cb..34532411888cb 100644
--- a/pkgs/applications/window-managers/weston/default.nix
+++ b/pkgs/applications/window-managers/weston/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, fetchpatch2
+{ lib, stdenv, fetchurl
 , meson, ninja, pkg-config, python3, wayland-scanner
 , cairo, libGL, libdrm, libevdev, libinput, libxkbcommon, mesa, seatd, wayland
 , wayland-protocols, xcbutilcursor
@@ -19,23 +19,13 @@
 
 stdenv.mkDerivation rec {
   pname = "weston";
-  version = "12.0.2";
+  version = "13.0.0";
 
   src = fetchurl {
     url = "https://gitlab.freedesktop.org/wayland/weston/-/releases/${version}/downloads/weston-${version}.tar.xz";
-    hash = "sha256-62hqfPAJkqI7F/GS/KmohzE+ksNG7jXYV1GWmD1la0o=";
+    hash = "sha256-Uv8dSqI5Si5BbIWjOLYnzpf6cdQ+t2L9Sq8UXTb8eVo=";
   };
 
-  patches = [
-    # ci, backend-vnc: update to Neat VNC 0.7.0
-    # part of https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1051
-    (fetchpatch2 {
-      url = "https://gitlab.freedesktop.org/wayland/weston/-/commit/8895b15f3dfc555a869e310ff6e16ff5dced1336.patch";
-      hash = "sha256-PGAmQhzG8gZcYRaZwhKPlgzfbILIXGAHLSd9dCHAP1A=";
-      excludes = [ ".gitlab-ci.yml" ];
-    })
-  ];
-
   depsBuildBuild = [ pkg-config ];
   nativeBuildInputs = [ meson ninja pkg-config python3 wayland-scanner ];
   buildInputs = [