mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 19:24:20 +00:00
c7d9fae3fd
- kio-extras-kf5 moved to misc because of release schedule weirdness - calindori ported to KF6, reenabled - some build fixes all over - add 7zip to a bunch of games for SVG compression
19 lines
341 B
Nix
19 lines
341 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];
|
|
}
|