2018-02-28 09:48:52 +00:00
|
|
|
{ stdenv, fetchFromGitHub, writeScript, pkgconfig, cmake, qtbase, qttools
|
2017-09-05 17:05:42 +01:00
|
|
|
, seafile-shared, ccnet, makeWrapper
|
|
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2017-08-06 18:09:33 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-11 13:35:17 +01:00
|
|
|
version = "6.1.8";
|
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}";
|
2018-05-11 13:35:17 +01:00
|
|
|
sha256 = "0gy7jfxr5f8qvbqj80g7fzaw9b3vax750c4z5cr7f43rv99284pc";
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
|
2017-08-06 18:09:33 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
|
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
|
|
|
|
2017-08-06 18:09:33 +01:00
|
|
|
postInstall = ''
|
2014-02-28 16:06:18 +00:00
|
|
|
wrapProgram $out/bin/seafile-applet \
|
2016-08-22 23:06:51 +01:00
|
|
|
--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}
|
2017-08-06 18:09:33 +01:00
|
|
|
'';
|
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;
|
2018-04-01 15:37:39 +01:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
}
|