2024-06-20 14:57:18 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
2024-06-20 14:57:18 +00:00
|
|
|
extraBuildInputs = [
|
|
|
|
qtkeychain
|
|
|
|
qtwayland
|
|
|
|
freerdp
|
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
];
|
|
|
|
}
|