;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2021 Raghav Gururajan ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages nextcloud) #:use-module (gnu packages) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages documentation) #:use-module (gnu packages freedesktop) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) #:use-module (gnu packages graphviz) #:use-module (gnu packages kde-frameworks) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages qt) #:use-module (gnu packages ruby) #:use-module (gnu packages sphinx) #:use-module (gnu packages sqlite) #:use-module (gnu packages tls) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix git-download) #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system qt)) (define-public nextcloud-desktop (package (name "nextcloud-desktop") (version "3.1.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/nextcloud/desktop.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1ba9z1kv3wlrmaxsn442vn0inzbd0smvq4xkavarn1h8i0dm62hb")))) (build-system qt-build-system) (arguments `(#:configure-flags (list "-DUNIT_TESTING=ON") #:imported-modules (,@%qt-build-system-modules (guix build glib-or-gtk-build-system)) #:modules ((guix build qt-build-system) ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:) (guix build utils)) #:phases (modify-phases %standard-phases (add-after 'unpack 'remove-thirdparty (lambda _ (with-directory-excursion "src/3rdparty" (for-each delete-file-recursively (list "libcrashreporter-qt" "sqlite3"))) #t)) (add-after 'remove-thirdparty 'patch-plugin-dirs (lambda* (#:key outputs #:allow-other-keys) (substitute* "shell_integration/libcloudproviders/CMakeLists.txt" (("PKGCONFIG_GETVAR\\(dbus-1 session_bus_services_dir _install_dir\\)") "set(_install_dir \"${CMAKE_INSTALL_PREFIX}/share/dbus-1/services\")")) (substitute* "shell_integration/dolphin/CMakeLists.txt" (("ON CACHE") "OFF CACHE") (("\\$\\{KDE_INSTALL_KSERVICES5DIR\\}") (string-append (assoc-ref outputs "out") "/lib/qt5/plugins")) (("\\$\\{KDE_INSTALL_PLUGINDIR\\}") (string-append (assoc-ref outputs "out") "/lib/qt5/plugins"))) #t)) (add-before 'build 'gate (lambda _ #t)) (add-before 'check 'pre-check (lambda _ (setenv "HOME" (getcwd)) #t)) (add-after 'install 'glib-or-gtk-compile-schemas (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)) (add-after 'glib-or-gtk-compile-schemas 'glib-or-gtk-wrap (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))))) (native-inputs `(("cmocka" ,cmocka) ("dot" ,graphviz) ("doxygen" ,doxygen) ("extra-cmake-modules" ,extra-cmake-modules) ("glib:bin" ,glib "bin") ("perl" ,perl) ("pkg-config" ,pkg-config) ("python" ,python-wrapper) ("qttools" ,qttools) ("ruby" ,ruby) ("sphinx" ,python-sphinx))) (inputs `(("appstream" ,appstream) ("dbus" ,dbus) ("glib" ,glib) ("kconfig" ,kconfig) ("kcoreaddons" ,kcoreaddons) ("kio" ,kio) ("libcloudproviders" ,libcloudproviders) ("openssl" ,openssl) ("qtbase" ,qtbase) ("qtdeclarative" ,qtdeclarative) ("qtkeychain" ,qtkeychain) ("qtquickcontrols2" ,qtquickcontrols2) ("qtsvg" ,qtsvg) ("qtwebchannel" ,qtwebchannel) ("qtwebengine" ,qtwebengine) ("qtwebkit" ,qtwebkit) ("sqlite" ,sqlite) ("zlib" ,zlib))) (synopsis "Desktop sync client for Nextcloud") (description "Nextcloud-Desktop is a tool to synchronize files from Nextcloud Server with your computer.") (home-page "https://nextcloud.com/install/#install-clients") (license license:gpl2+)))