2017-08-06 19:09:33 +02:00
|
|
|
{ stdenv, fetchurl, writeScript, 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-02-28 00:52:32 +01:00
|
|
|
version = "6.1.5";
|
2014-02-04 20:02:46 +01:00
|
|
|
name = "seafile-client-${version}";
|
|
|
|
|
2017-08-06 19:09:33 +02:00
|
|
|
src = fetchurl {
|
2014-02-04 20:02:46 +01:00
|
|
|
url = "https://github.com/haiwen/seafile-client/archive/v${version}.tar.gz";
|
2018-02-28 00:52:32 +01:00
|
|
|
sha256 = "09m1k99pb8vj37zfr8a0j5xyghyvxindmdpgxvvxh589q4ngfsx8";
|
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;
|
|
|
|
maintainers = [ maintainers.calrama ];
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
}
|