2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
|
2017-09-05 18:05:42 +02:00
|
|
|
, seafile-shared, ccnet, makeWrapper
|
|
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-08-06 19:09:33 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-07 14:16:49 +01:00
|
|
|
version = "6.2.8";
|
2014-02-04 20:02:46 +01:00
|
|
|
name = "seafile-client-${version}";
|
|
|
|
|
2018-02-28 10:48:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile-client";
|
|
|
|
rev = "v${version}";
|
2018-12-07 14:16:49 +01:00
|
|
|
sha256 = "1y57cw789cmssgl39kj94q259kba08v5i1yc1cmx7qxyigrpwyv6";
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
|
2017-08-06 19:09:33 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
|
2017-09-05 18:05:42 +02:00
|
|
|
buildInputs = [ qtbase qttools seafile-shared ]
|
|
|
|
++ optional withShibboleth qtwebengine;
|
|
|
|
|
|
|
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
|
|
|
|
++ optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-08-06 19:09:33 +02:00
|
|
|
postInstall = ''
|
2014-02-28 17:06:18 +01:00
|
|
|
wrapProgram $out/bin/seafile-applet \
|
2016-08-23 00:06:51 +02:00
|
|
|
--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}
|
2017-08-06 19:09:33 +02:00
|
|
|
'';
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-08-06 19:09:33 +02:00
|
|
|
meta = with stdenv.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;
|
2018-04-01 16:37:39 +02:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
}
|