From 02479819d661fbeee9a219dd19e50b637f7cabf8 Mon Sep 17 00:00:00 2001 From: Ilan Joselevich Date: Fri, 6 May 2022 15:00:13 +0300 Subject: [PATCH 1/2] Revert "nextcloud-client: remove inkscape from runtime closure" This reverts commit 1f70a0a9e07be3e2dde872f700e4ede82c98c2ab. --- pkgs/applications/networking/nextcloud-client/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix index 2c07d637bd41..a7df46d65039 100644 --- a/pkgs/applications/networking/nextcloud-client/default.nix +++ b/pkgs/applications/networking/nextcloud-client/default.nix @@ -50,18 +50,15 @@ mkDerivation rec { done ''; - # required to not include inkscape in the wrapper - strictDeps = true; - nativeBuildInputs = [ pkg-config cmake + extra-cmake-modules inkscape sphinx ]; buildInputs = [ - extra-cmake-modules inotify-tools libcloudproviders libsecret From 004a752f6f6040c943084a2a9bbf6a97c478f32f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 6 May 2022 16:19:32 +0200 Subject: [PATCH 2/2] nextcloud-client: replace inkscape with the more light librsvg --- pkgs/applications/networking/nextcloud-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix index a7df46d65039..32dadb8e5f92 100644 --- a/pkgs/applications/networking/nextcloud-client/default.nix +++ b/pkgs/applications/networking/nextcloud-client/default.nix @@ -6,6 +6,7 @@ , inotify-tools , installShellFiles , libcloudproviders +, librsvg , libsecret , openssl , pcre @@ -20,7 +21,6 @@ , plasma5Packages , sphinx , sqlite -, inkscape , xdg-utils }: @@ -54,7 +54,7 @@ mkDerivation rec { pkg-config cmake extra-cmake-modules - inkscape + librsvg sphinx ];