2023-06-26 10:08:26 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, cmake
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, libuuid
|
|
|
|
, seafile-shared
|
|
|
|
, jansson
|
|
|
|
, libsearpc
|
|
|
|
, withShibboleth ? true
|
|
|
|
, qtwebengine
|
|
|
|
, wrapQtAppsHook
|
|
|
|
}:
|
2017-09-05 16:05:42 +00:00
|
|
|
|
2023-06-26 10:08:26 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "seafile-client";
|
2023-07-10 06:41:44 +00:00
|
|
|
version = "9.0.3";
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2018-02-28 09:48:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile-client";
|
2023-06-26 10:08:26 +00:00
|
|
|
rev = "v${version}";
|
2023-07-10 06:41:44 +00:00
|
|
|
sha256 = "sha256-zoo34mhNZTEwxjSy8XgmZfEjkujmWj34OtDJQSCb/zk=";
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
|
2023-06-26 10:08:26 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
libuuid
|
|
|
|
pkg-config
|
|
|
|
cmake
|
|
|
|
wrapQtAppsHook
|
|
|
|
qttools
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
seafile-shared
|
|
|
|
jansson
|
|
|
|
libsearpc
|
|
|
|
] ++ lib.optional withShibboleth qtwebengine;
|
2017-09-05 16:05:42 +00:00
|
|
|
|
2023-06-26 10:08:26 +00:00
|
|
|
cmakeFlags = lib.optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2019-08-22 06:14:38 +00:00
|
|
|
qtWrapperArgs = [
|
2020-12-10 17:22:58 +00:00
|
|
|
"--suffix PATH : ${lib.makeBinPath [ seafile-shared ]}"
|
2019-08-22 06:14:38 +00: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 17:09:33 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
2021-11-16 02:40:59 +00:00
|
|
|
maintainers = with maintainers; [ schmittlauch greizgh ];
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
}
|