01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
28 lines
800 B
Nix
28 lines
800 B
Nix
{ lib, stdenv, fetchFromSourcehut
|
|
, meson, pkg-config, ninja
|
|
, wayland, obs-studio, libX11
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "wlrobs";
|
|
version = "unstable-2022-10-06";
|
|
|
|
src = fetchFromSourcehut {
|
|
vc = "hg";
|
|
owner = "~scoopta";
|
|
repo = "wlrobs";
|
|
rev = "78be323b25e1365f5c8f9dcba6938063ca10f71f";
|
|
sha256 = "sha256-/VemJkk695BdSDsODmYIPdhPwggzIhBi/0m6P+AYfx0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson pkg-config ninja ];
|
|
buildInputs = [ wayland obs-studio libX11 ];
|
|
|
|
meta = with lib; {
|
|
description = "An obs-studio plugin that allows you to screen capture on wlroots based wayland compositors";
|
|
homepage = "https://hg.sr.ht/~scoopta/wlrobs";
|
|
maintainers = with maintainers; [ grahamc V ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|