ffc78d3539
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
16 lines
466 B
Nix
16 lines
466 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
kdelibs4support, kdnssd, libvncserver, libXtst, libXdamage, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "krfb";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 fdl12 ];
|
|
maintainers = with lib.maintainers; [ jerith666 ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ libvncserver libXtst libXdamage qtx11extras ];
|
|
propagatedBuildInputs = [ kdelibs4support kdnssd ];
|
|
}
|