2019-08-22 07:14:38 +01:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
|
|
|
|
, seafile-shared, ccnet
|
2017-09-05 17:05:42 +01:00
|
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2019-08-22 07:14:38 +01:00
|
|
|
mkDerivation rec {
|
2019-01-27 05:56:31 +00:00
|
|
|
version = "6.2.11";
|
2014-02-04 19:02:46 +00:00
|
|
|
name = "seafile-client-${version}";
|
|
|
|
|
2018-02-28 09:48:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile-client";
|
|
|
|
rev = "v${version}";
|
2019-01-27 05:56:31 +00:00
|
|
|
sha256 = "1b8jqmr2qd3bpb3sr4p5w2a76x5zlknkj922sxrvw1rdwqhkb2pj";
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
|
2019-08-22 07:14:38 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2017-09-05 17:05:42 +01:00
|
|
|
buildInputs = [ qtbase qttools seafile-shared ]
|
|
|
|
++ optional withShibboleth qtwebengine;
|
|
|
|
|
|
|
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
|
|
|
|
++ optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2019-08-22 07:14:38 +01:00
|
|
|
qtWrapperArgs = [
|
|
|
|
"--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}"
|
|
|
|
];
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2017-08-06 18:09:33 +01:00
|
|
|
meta = with stdenv.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;
|
2019-01-15 23:39:33 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
}
|