obs-wayland-hotkeys: init at 1.1.0

This commit is contained in:
Finn Brandt
2026-04-14 19:57:45 +02:00
parent 99f178da12
commit d6931c4632
2 changed files with 43 additions and 0 deletions
@@ -106,6 +106,8 @@
obs-vnc = callPackage ./obs-vnc.nix { };
obs-wayland-hotkeys = qt6Packages.callPackage ./obs-wayland-hotkeys { };
obs-websocket = qt6Packages.callPackage ./obs-websocket.nix { }; # Websocket 4.x compatibility for OBS Studio 28+
pixel-art = callPackage ./pixel-art.nix { };
@@ -0,0 +1,41 @@
{
stdenv,
lib,
fetchFromGitHub,
cmake,
obs-studio,
pkg-config,
qtbase,
}:
stdenv.mkDerivation (finalAttr: {
pname = "obs-wayland-hotkeys";
version = "1.1.0";
src = fetchFromGitHub {
owner = "leia-uwu";
repo = "obs-wayland-hotkeys";
tag = "v${finalAttr.version}";
hash = "sha256-vOQfOEAnxn5vCaWpwDED1C107BB/d7T10kmKTXJ4k8k=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
obs-studio
qtbase
];
dontWrapQtApps = true;
meta = {
description = "OBS Studio plugin to integrate OBS hotkeys with the Wayland global shortcuts portal";
homepage = "https://github.com/leia-uwu/obs-wayland-hotkeys";
maintainers = with lib.maintainers; [ terrorw0lf ];
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
})