mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
22 lines
282 B
Nix
22 lines
282 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtwayland,
|
|
libssh,
|
|
libvncserver,
|
|
freerdp,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "krdc";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtwayland
|
|
libssh
|
|
libvncserver
|
|
freerdp
|
|
];
|
|
|
|
meta.mainProgram = "krdc";
|
|
}
|