12 lines
152 B
Nix
12 lines
152 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
libssh,
|
||
|
libvncserver,
|
||
|
freerdp,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "krdc";
|
||
|
|
||
|
extraBuildInputs = [libssh libvncserver freerdp];
|
||
|
}
|