Skip to content

Commit

Permalink
waywall: init at 0-unstable-2025-02-07
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkieeBoi committed Feb 24, 2025
1 parent c71535b commit 6d3b92d
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions pkgs/by-name/wa/waywall/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
lib,
stdenv,
fetchFromGitHub,
libGL,
libspng,
libxkbcommon,
luajit,
meson,
ninja,
pkg-config,
wayland,
wayland-protocols,
wayland-scanner,
xorg,
xwayland,
}:
stdenv.mkDerivation {
pname = "waywall";
version = "0-unstable-2025-02-07";

src = fetchFromGitHub {
owner = "tesselslate";
repo = "waywall";
rev = "be96e20997c5886af9661d9832b7902aba1e5311";
hash = "sha256-77GbBzHjyZuauhl0vlguUS/7jBT4qNjOLYGWBVTPjEY=";
};

nativeBuildInputs = [
meson
ninja
pkg-config
wayland-scanner
];

buildInputs = [
libGL
libspng
libxkbcommon
luajit
wayland
wayland-protocols
xorg.libxcb
xwayland
];

installPhase = ''
runHook preInstall
install -Dm755 waywall/waywall -t $out/bin
runHook postInstall
'';

meta = {
description = "Wayland compositor for Minecraft speedrunning";
longDescription = ''
Waywall is a Wayland compositor that provides various convenient
features (key rebinding, Ninjabrain Bot support, etc) for Minecraft
speedrunning. It is designed to be nested within an existing Wayland
session and is intended as a successor to resetti.
'';
homepage = "https://tesselslate.github.io/waywall/";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
monkieeboi
];
platforms = lib.platforms.linux;
mainProgram = "waywall";
};
}

0 comments on commit 6d3b92d

Please sign in to comment.