diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix index 4b3a68352416..5454765ad25c 100644 --- a/pkgs/applications/networking/nextcloud-client/default.nix +++ b/pkgs/applications/networking/nextcloud-client/default.nix @@ -4,6 +4,7 @@ , cmake , extra-cmake-modules , inotify-tools +, installShellFiles , libcloudproviders , libsecret , openssl @@ -17,6 +18,7 @@ , qtquickcontrols2 , qtgraphicaleffects , plasma5Packages +, sphinx , sqlite , inkscape , xdg-utils @@ -44,6 +46,7 @@ mkDerivation rec { cmake extra-cmake-modules inkscape + sphinx ]; buildInputs = [ @@ -75,6 +78,10 @@ mkDerivation rec { "-DNO_SHIBBOLETH=1" # allows to compile without qtwebkit ]; + postBuild = '' + make doc-man + ''; + meta = with lib; { description = "Nextcloud themed desktop client"; homepage = "https://nextcloud.com";