[Overlays/Packages] Enable cloudproviders/kio integration for nextcloud

Signed-off-by: Antoine Viallon <antoine@lesviallon.fr>
This commit is contained in:
Antoine Viallon 2022-03-25 03:04:22 +01:00
parent aae354de14
commit 7e85d37bbd
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -33,6 +33,16 @@ in
(self: super: {
inherit unstable;
})
(self: super: {
nextcloud-client = optimizeForThisHost (super.nextcloud-client.overrideAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs ++ (with super; [
extra-cmake-modules
]);
buildInputs = old.buildInputs ++ (with super; with libsForQt5; [
kio
]);
}));
})
(self: super: {
opensshOptimized = optimizeForThisHost super.openssh;
rsyncOptimized = optimizeForThisHost super.rsync;