44 lines
789 B
Nix
44 lines
789 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
substituteAll,
|
|
sshfs,
|
|
qtconnectivity,
|
|
qtmultimedia,
|
|
qtwayland,
|
|
pkg-config,
|
|
wayland,
|
|
wayland-protocols,
|
|
libfakekey,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kdeconnect-kde";
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./hardcode-sshfs-path.patch;
|
|
sshfs = lib.getExe sshfs;
|
|
})
|
|
];
|
|
|
|
# Hardcoded as a QString, which is UTF-16 so Nix can't pick it up automatically
|
|
postFixup = ''
|
|
mkdir -p $out/nix-support
|
|
echo "${sshfs}" > $out/nix-support/depends
|
|
'';
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtconnectivity
|
|
qtmultimedia
|
|
qtwayland
|
|
wayland
|
|
wayland-protocols
|
|
libfakekey
|
|
];
|
|
|
|
extraCmakeFlags = [
|
|
"-DQtWaylandScanner_EXECUTABLE=${qtwayland}/libexec/qtwaylandscanner"
|
|
];
|
|
}
|