2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
|
2017-09-05 16:05:42 +00:00
|
|
|
, seafile-shared, ccnet, makeWrapper
|
|
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2017-08-06 17:09:33 +00:00
|
|
|
stdenv.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
|
|
|
};
|
|
|
|
|
2017-08-06 17:09:33 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
|
2017-09-05 16:05:42 +00: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
|
|
|
|
2017-08-06 17:09:33 +00:00
|
|
|
postInstall = ''
|
2014-02-28 16:06:18 +00:00
|
|
|
wrapProgram $out/bin/seafile-applet \
|
2016-08-22 22:06:51 +00:00
|
|
|
--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}
|
2017-08-06 17:09:33 +00:00
|
|
|
'';
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2017-08-06 17:09:33 +00: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 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
|
|
|
};
|
|
|
|
}
|