From e532f3ecf44d0bbb7b6ae45a0e3e87ec4dc40b8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 16 Apr 2022 02:35:27 +0200 Subject: [PATCH] nextcloud-client: build man pages --- pkgs/applications/networking/nextcloud-client/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) 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";