nixpkgs/pkgs/applications/networking/nextcloud-client/default.nix

77 lines
1.5 KiB
Nix
Raw Normal View History

2019-08-23 20:54:41 +00:00
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, inotify-tools
, libcloudproviders
2019-08-23 20:54:41 +00:00
, libsecret
, openssl
, pcre
, pkg-config
2019-08-23 20:54:41 +00:00
, qtbase
, qtkeychain
, qttools
, qtwebengine
, qtwebsockets
2020-08-20 10:41:44 +00:00
, qtquickcontrols2
, qtgraphicaleffects
2019-08-23 20:54:41 +00:00
, sqlite
, inkscape
}:
mkDerivation rec {
pname = "nextcloud-client";
2021-08-03 09:49:20 +00:00
version = "3.3.0";
src = fetchFromGitHub {
owner = "nextcloud";
repo = "desktop";
rev = "v${version}";
2021-08-03 09:49:20 +00:00
sha256 = "sha256-KMFFRxNQUNcu7Q5515lNbEMyCWIvzXXC//s3WAWxw4g=";
};
patches = [
# Explicitly move dbus configuration files to the store path rather than `/etc/dbus-1/services`.
./0001-Explicitly-copy-dbus-files-into-the-store-dir.patch
];
2019-08-23 20:54:41 +00:00
nativeBuildInputs = [
pkg-config
2019-08-23 20:54:41 +00:00
cmake
inkscape
2019-08-23 20:54:41 +00:00
];
2019-08-23 20:54:41 +00:00
buildInputs = [
inotify-tools
libcloudproviders
libsecret
2019-08-23 20:54:41 +00:00
openssl
pcre
qtbase
qtkeychain
qttools
qtwebengine
2020-08-20 10:41:44 +00:00
qtquickcontrols2
qtgraphicaleffects
qtwebsockets
2019-08-23 20:54:41 +00:00
sqlite
];
qtWrapperArgs = [
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libsecret ]}"
];
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib" # expected to be prefix-relative by build code setting RPATH
"-DNO_SHIBBOLETH=1" # allows to compile without qtwebkit
];
meta = with lib; {
description = "Nextcloud themed desktop client";
homepage = "https://nextcloud.com";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ caugner kranzes ];
platforms = platforms.linux;
};
}