xwayland-run: 0.0.3 -> 0.0.4

This commit is contained in:
arthsmn 2024-07-15 10:39:30 -03:00
parent 5e9cfa8b40
commit 6492c4ee64
No known key found for this signature in database

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;
};
}