2021-06-30 16:11:42 +02:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, pkg-config, cmake, qtbase, qttools
|
2020-12-10 18:22:58 +01:00
|
|
|
, seafile-shared, jansson, libsearpc
|
2017-09-05 18:05:42 +02:00
|
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
|
2020-02-24 22:12:31 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "seafile-client";
|
2021-11-16 03:40:37 +01:00
|
|
|
version = "8.0.5";
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2018-02-28 10:48:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile-client";
|
2021-06-30 16:11:42 +02:00
|
|
|
rev = "v${version}";
|
2021-11-16 03:40:37 +01:00
|
|
|
sha256 = "1p9wkvnr3km829gy84b1w1pv72pany5vr3r7ydz1c0aqrp0snfhx";
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2020-01-15 23:01:38 +01:00
|
|
|
buildInputs = [ qtbase qttools seafile-shared jansson libsearpc ]
|
|
|
|
++ lib.optional withShibboleth qtwebengine;
|
2017-09-05 18:05:42 +02:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
|
2020-01-15 23:01:38 +01:00
|
|
|
++ lib.optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2019-08-22 08:14:38 +02:00
|
|
|
qtWrapperArgs = [
|
2020-12-10 18:22:58 +01:00
|
|
|
"--suffix PATH : ${lib.makeBinPath [ seafile-shared ]}"
|
2019-08-22 08:14:38 +02:00
|
|
|
];
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2020-01-15 23:01:38 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/haiwen/seafile-client";
|
2014-02-04 20:02:46 +01:00
|
|
|
description = "Desktop client for Seafile, the Next-generation Open Source Cloud Storage";
|
2017-08-06 19:09:33 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
2021-11-16 03:40:59 +01:00
|
|
|
maintainers = with maintainers; [ schmittlauch greizgh ];
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
}
|