Commit 0966f1d5 authored by Sergei Trofimovich's avatar Sergei Trofimovich Committed by Anderson Torres
Browse files

xwayland: 23.2.0 -> 23.2.1

While at it added trivial updater.

Changes: https://www.spinics.net/lists/xorg/msg61058.html
parent 7a1233cc
Loading
Loading
Loading
Loading
+11 −3
Original line number Diff line number Diff line
@@ -39,15 +39,17 @@
, xorgproto
, xtrans
, zlib
, defaultFontPath ? "" }:
, defaultFontPath ? ""
, gitUpdater
}:

stdenv.mkDerivation rec {
  pname = "xwayland";
  version = "23.2.0";
  version = "23.2.1";

  src = fetchurl {
    url = "mirror://xorg/individual/xserver/${pname}-${version}.tar.xz";
    sha256 = "sha256-fzPsKjTebmauG35Ehyw6IUYZKHLHGbms8ZKBTtur1MU=";
    sha256 = "sha256-7rwmksOqgGF9eEKLxux7kbJUqYIU0qcOmXCYUDzW75A=";
  };

  depsBuildBuild = [
@@ -104,6 +106,12 @@ stdenv.mkDerivation rec {
    (lib.mesonBool "libunwind" (libunwind != null))
  ];

  passthru.updateScript = gitUpdater {
    # No nicer place to find latest release.
    url = "https://gitlab.freedesktop.org/xorg/xserver.git";
    rev-prefix = "xwayland-";
  };

  meta = with lib; {
    description = "An X server for interfacing X11 apps with the Wayland protocol";
    homepage = "https://wayland.freedesktop.org/xserver.html";