xwaylandvideobridge: drop

Unmaintained upstream, buggy, not really necessary anymore.
This commit is contained in:
K900
2025-10-08 19:24:33 +03:00
parent 32ccd680ad
commit 1d584e3a90
3 changed files with 0 additions and 65 deletions

View File

@@ -166,7 +166,6 @@ in
spectacle
ffmpegthumbs
krdp
xwaylandvideobridge # exposes Wayland windows to X11 screen capture
]
++ lib.optionals config.hardware.sensor.iio.enable [
# This is required for autorotation in Plasma 6

View File

@@ -1,62 +0,0 @@
{
lib,
stdenv,
fetchurl,
cmake,
extra-cmake-modules,
pkg-config,
qtbase,
qtdeclarative,
qtx11extras ? null, # qt5 only
kcoreaddons,
ki18n,
knotifications,
kpipewire,
kstatusnotifieritem ? null, # qt6 only
kwindowsystem,
wrapQtAppsHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xwaylandvideobridge";
version = "0.4.0";
src = fetchurl {
url = "mirror://kde/stable/xwaylandvideobridge/xwaylandvideobridge-${finalAttrs.version}.tar.xz";
hash = "sha256-6nKseypnV46ZlNywYZYC6tMJekb7kzZmHaIA5jkn6+Y=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
pkg-config
wrapQtAppsHook
];
buildInputs = [
qtbase
qtdeclarative
qtx11extras
kcoreaddons
ki18n
knotifications
kpipewire
kstatusnotifieritem
kwindowsystem
];
cmakeFlags = [ "-DQT_MAJOR_VERSION=${lib.versions.major qtbase.version}" ];
meta = {
description = "Utility to allow streaming Wayland windows to X applications";
homepage = "https://invent.kde.org/system/xwaylandvideobridge";
license = with lib.licenses; [
bsd3
cc0
gpl2Plus
];
maintainers = with lib.maintainers; [ stepbrobd ];
platforms = lib.platforms.linux;
mainProgram = "xwaylandvideobridge";
};
})

View File

@@ -151,8 +151,6 @@ makeScopeWithSplicing' {
waylib = callPackage ../development/libraries/waylib { };
wayqt = callPackage ../development/libraries/wayqt { };
xwaylandvideobridge = kdePackages.callPackage ../tools/wayland/xwaylandvideobridge { };
}
);
}