2023-06-26 12:08:26 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, cmake
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, libuuid
|
|
|
|
, seafile-shared
|
|
|
|
, jansson
|
|
|
|
, libsearpc
|
|
|
|
, withShibboleth ? true
|
|
|
|
, qtwebengine
|
|
|
|
, wrapQtAppsHook
|
|
|
|
}:
|
2017-09-05 18:05:42 +02:00
|
|
|
|
2023-06-26 12:08:26 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "seafile-client";
|
2023-07-10 08:41:44 +02:00
|
|
|
version = "9.0.3";
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2018-02-28 10:48:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile-client";
|
2023-06-26 12:08:26 +02:00
|
|
|
rev = "v${version}";
|
2023-07-10 08:41:44 +02:00
|
|
|
sha256 = "sha256-zoo34mhNZTEwxjSy8XgmZfEjkujmWj34OtDJQSCb/zk=";
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
|
2023-06-26 12:08:26 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
libuuid
|
|
|
|
pkg-config
|
|
|
|
cmake
|
|
|
|
wrapQtAppsHook
|
|
|
|
qttools
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
seafile-shared
|
|
|
|
jansson
|
|
|
|
libsearpc
|
|
|
|
] ++ lib.optional withShibboleth qtwebengine;
|
2017-09-05 18:05:42 +02:00
|
|
|
|
2023-06-26 12:08:26 +02:00
|
|
|
cmakeFlags = 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
|
|
|
};
|
|
|
|
}
|