2020-02-24 21:12:31 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
|
2020-01-15 22:01:38 +00:00
|
|
|
, seafile-shared, ccnet, jansson, libsearpc
|
2017-09-05 16:05:42 +00:00
|
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
|
2020-02-24 21:12:31 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "seafile-client";
|
2020-04-07 16:29:19 +00:00
|
|
|
version = "7.0.7";
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2018-02-28 09:48:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile-client";
|
|
|
|
rev = "v${version}";
|
2020-04-07 16:29:19 +00:00
|
|
|
sha256 = "0szdyprljyckmbrw5sypizs22j96q84ak6nyidyr2j6gf4grh9mg";
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
|
2019-08-22 06:14:38 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2020-01-15 22:01:38 +00:00
|
|
|
buildInputs = [ qtbase qttools seafile-shared jansson libsearpc ]
|
|
|
|
++ lib.optional withShibboleth qtwebengine;
|
2017-09-05 16:05:42 +00: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 06:14:38 +00:00
|
|
|
qtWrapperArgs = [
|
2020-02-24 21:12:31 +00:00
|
|
|
"--suffix PATH : ${lib.makeBinPath [ ccnet 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;
|
2019-01-15 23:39:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
}
|