nixpkgs/pkgs/applications/networking/seafile-client/default.nix

35 lines
1 KiB
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
2020-01-15 22:01:38 +00:00
, seafile-shared, ccnet, jansson, libsearpc
, withShibboleth ? true, qtwebengine }:
mkDerivation rec {
pname = "seafile-client";
2020-04-07 16:29:19 +00:00
version = "7.0.7";
2018-02-28 09:48:52 +00:00
src = fetchFromGitHub {
owner = "haiwen";
repo = "seafile-client";
rev = "v${version}";
2020-04-07 16:29:19 +00:00
sha256 = "0szdyprljyckmbrw5sypizs22j96q84ak6nyidyr2j6gf4grh9mg";
};
nativeBuildInputs = [ pkgconfig cmake ];
2020-01-15 22:01:38 +00:00
buildInputs = [ qtbase qttools seafile-shared jansson libsearpc ]
++ lib.optional withShibboleth qtwebengine;
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
2020-01-15 22:01:38 +00:00
++ lib.optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
qtWrapperArgs = [
"--suffix PATH : ${lib.makeBinPath [ ccnet seafile-shared ]}"
];
2020-01-15 22:01:38 +00:00
meta = with lib; {
homepage = "https://github.com/haiwen/seafile-client";
description = "Desktop client for Seafile, the Next-generation Open Source Cloud Storage";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
};
}