summaryrefslogtreecommitdiff
path: root/pkgs/xwaylandvideobridge/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/xwaylandvideobridge/default.nix')
-rw-r--r--pkgs/xwaylandvideobridge/default.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/xwaylandvideobridge/default.nix b/pkgs/xwaylandvideobridge/default.nix
deleted file mode 100644
index 3a3b346..0000000
--- a/pkgs/xwaylandvideobridge/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- lib,
- cmake,
- extra-cmake-modules,
- fetchFromGitLab,
- libsForQt5,
- ninja,
- pkg-config,
- stdenv,
- xorg,
-}:
-stdenv.mkDerivation rec {
- pname = "xwaylandvideobridge";
- version = "unstable-2023-11-03";
-
- src = fetchFromGitLab {
- domain = "invent.kde.org";
- owner = "system";
- repo = pname;
- rev = "c16acf1378c4bc0da2c72b15bdcedbd5e783fc3a";
- sha256 = "sha256-Gci1AnC8mqeqtG76Crzon2zL34lgptv5cHlh+WWkg9Q=";
- };
-
- nativeBuildInputs = [
- cmake
- extra-cmake-modules
- ninja
- libsForQt5.qt5.wrapQtAppsHook
- pkg-config
- ];
-
- buildInputs = with libsForQt5; [
- kcoreaddons
- kdbusaddons
- ki18n
- knotifications
- kpipewire
- kwidgetsaddons
- kwindowsystem
- qt5.qtquickcontrols2
- qt5.qtx11extras
- xorg.libxcb
- ];
-
- meta = with lib; {
- description = "Utility to allow streaming Wayland windows to X applications";
- homepage = "https://invent.kde.org/system/xwaylandvideobridge";
- license = licenses.gpl2Plus;
- maintainer = [maintainers.getchoo];
- platforms = platforms.linux;
- };
-}