mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
24 lines
363 B
Nix
24 lines
363 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtwayland,
|
|
libvncserver,
|
|
pipewire,
|
|
xorg,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "krfb";
|
|
|
|
extraCmakeFlags = [
|
|
"-DQtWaylandScanner_EXECUTABLE=${qtwayland}/libexec/qtwaylandscanner"
|
|
];
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtwayland
|
|
libvncserver
|
|
pipewire
|
|
xorg.libXdamage
|
|
];
|
|
}
|