21 stdenv.mkDerivation (finalAttrs: {
23 version = "0.17.3-unstable-2024-04-30";
25 src = fetchFromGitHub {
28 rev = "9d459df379efdcf20ea10906c48c79c506c32066";
29 hash = "sha256-Bn7mCVQPH/kH2WRsGPPGIGgvk0r894zZHCHl6BVmWVg=";
50 strictDeps = false; # why is it so hard?
52 env.NIX_CFLAGS_COMPILE = "-Wno-error=maybe-uninitialized";
55 wrapProgram $out/bin/wio \
56 --prefix PATH ":" "${lib.makeBinPath [ alacritty cage ]}"
60 providedSessions = [ "wio" ];
61 updateScript = unstableGitUpdater { };
65 homepage = "https://github.com/Rubo3/wio";
66 description = "Wayland compositor similar to Plan 9's rio";
68 Wio is a Wayland compositor for Linux and FreeBSD which has a similar look
69 and feel to plan9's rio.
71 license = with lib.licenses; [ bsd3 ];
73 maintainers = with lib.maintainers; [ AndersonTorres ];
74 inherit (wayland.meta) platforms;