From 7e85d37bbdb5769a3246b6edafb78c68cce8f74a Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Fri, 25 Mar 2022 03:04:22 +0100 Subject: [PATCH] [Overlays/Packages] Enable cloudproviders/kio integration for nextcloud Signed-off-by: Antoine Viallon --- overlays.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/overlays.nix b/overlays.nix index b5d450e..017711c 100644 --- a/overlays.nix +++ b/overlays.nix @@ -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;