Merge pull request #327373 from arthsmn/xwayland-run-update

This commit is contained in:
Sandro 2024-07-16 13:53:51 +02:00 committed by GitHub
commit 80d78ee2f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,14 +20,14 @@ let
in
python3.pkgs.buildPythonApplication rec {
pname = "xwayland-run";
version = "0.0.3";
version = "0.0.4";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "ofourdan";
repo = "xwayland-run";
rev = version;
hash = "sha256-yYULbbcFDT1zRFn1UWS0dyuchGYnOZypDmxqc14RYF4=";
hash = "sha256-FP/2KNPehZEGKXr+fKdVj4DXzRMpfc3x7K6vH6ZsGdo=";
};
pyproject = false;
@ -48,12 +48,12 @@ python3.pkgs.buildPythonApplication rec {
--prefix PATH : ${lib.makeBinPath (compositors ++ [ xwayland xorg.xauth ])}
'';
meta = with lib; {
meta = {
changelog = "https://gitlab.freedesktop.org/ofourdan/xwayland-run/-/releases/${src.rev}";
description = "Set of small utilities revolving around running Xwayland and various Wayland compositor headless";
homepage = "https://gitlab.freedesktop.org/ofourdan/xwayland-run";
license = licenses.gpl2Only;
maintainers = with maintainers; [ arthsmn ];
platforms = platforms.linux;
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ arthsmn ];
platforms = lib.platforms.linux;
};
}