32 lines
453 B
Nix
32 lines
453 B
Nix
|
{
|
||
|
lib,
|
||
|
mkKdeDerivation,
|
||
|
substituteAll,
|
||
|
openssl,
|
||
|
pkg-config,
|
||
|
qtkeychain,
|
||
|
qtwayland,
|
||
|
freerdp,
|
||
|
wayland,
|
||
|
wayland-protocols,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "krdp";
|
||
|
|
||
|
patches = [
|
||
|
(substituteAll {
|
||
|
src = ./hardcode-openssl-path.patch;
|
||
|
openssl = lib.getExe openssl;
|
||
|
})
|
||
|
];
|
||
|
|
||
|
extraNativeBuildInputs = [pkg-config];
|
||
|
extraBuildInputs = [
|
||
|
qtkeychain
|
||
|
qtwayland
|
||
|
freerdp
|
||
|
wayland
|
||
|
wayland-protocols
|
||
|
];
|
||
|
}
|