nixos-config/packages/applications/desktop/xwaylandvideobridge/default.nix

25 lines
649 B
Nix
Raw Normal View History

2023-03-31 22:12:40 +00:00
{
stdenv
, lib, fetchFromGitLab
, cmake, extra-cmake-modules, pkg-config
, qtbase, qtx11extras, wrapQtAppsHook
, kpipewire, plasma-framework
, xorg
}:
stdenv.mkDerivation rec {
pname = "xwaylandvideobridge";
version = "5.27.3";
src = fetchFromGitLab {
owner = "davidedmundson";
repo = "xwaylandvideobridge";
2023-09-17 11:35:43 +00:00
rev = "b9e0c53570f55f4e8289f72ba78f3945e27e1a1a";
2023-03-31 22:12:40 +00:00
domain = "invent.kde.org";
2023-09-17 11:35:43 +00:00
sha256 = "1ypg2c26r5fy9lr8shif5vqcp06yf7mqqj2ps5g00s7s3ykryxdn";
2023-03-31 22:12:40 +00:00
};
buildInputs = [ qtbase qtx11extras plasma-framework xorg.xcbproto kpipewire cmake pkg-config ];
nativeBuildInputs = [ wrapQtAppsHook extra-cmake-modules ];
}