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;