2021-05-11 00:33:53 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, fetchpatch, pkg-config, cmake, qtbase, qttools
|
2020-12-10 17:22:58 +00:00
|
|
|
, seafile-shared, jansson, libsearpc
|
2017-09-05 17:05:42 +01:00
|
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
|
2020-02-24 21:12:31 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "seafile-client";
|
2020-12-12 11:25:45 +00:00
|
|
|
version = "8.0.1";
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2018-02-28 09:48:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile-client";
|
2020-12-12 11:25:45 +00:00
|
|
|
rev = "b4b944921c7efef13a93d693c45c997943899dec";
|
|
|
|
sha256 = "2vV+6ZXjVg81JVLfWeD0UK+RdmpBxBU2Ozx790WFSyw=";
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
|
2021-05-11 00:33:53 +01:00
|
|
|
patches = [
|
2021-05-11 09:23:24 +01:00
|
|
|
# Fix compilation failure with "error: template with C linkage", fixes #122505
|
2021-05-11 00:33:53 +01:00
|
|
|
(fetchpatch {
|
|
|
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/fix_build_with_glib2.diff?h=seafile-client&id=7be253aaa2bdb6771721f45aa08bc875c8001c5a";
|
|
|
|
name = "fix_build_with_glib2.diff";
|
|
|
|
sha256 = "0hl7rcqfr8k62c1pr133bp3j63b905izaaggmgvr1af4jibal05v";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2020-01-15 22:01:38 +00:00
|
|
|
buildInputs = [ qtbase qttools seafile-shared jansson libsearpc ]
|
|
|
|
++ lib.optional withShibboleth qtwebengine;
|
2017-09-05 17:05:42 +01:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
|
2020-01-15 22:01:38 +00:00
|
|
|
++ lib.optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2019-08-22 07:14:38 +01:00
|
|
|
qtWrapperArgs = [
|
2020-12-10 17:22:58 +00:00
|
|
|
"--suffix PATH : ${lib.makeBinPath [ seafile-shared ]}"
|
2019-08-22 07:14:38 +01:00
|
|
|
];
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2020-01-15 22:01:38 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/haiwen/seafile-client";
|
2014-02-04 19:02:46 +00:00
|
|
|
description = "Desktop client for Seafile, the Next-generation Open Source Cloud Storage";
|
2017-08-06 18:09:33 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
2021-05-11 09:23:24 +01:00
|
|
|
maintainers = with maintainers; [ eduardosm ];
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
}
|