nixpkgs/pkgs/applications/networking/seafile-client/default.nix
2024-02-27 12:48:17 +00:00

57 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, cmake
, qtbase
, qttools
, libuuid
, seafile-shared
, jansson
, libsearpc
, withShibboleth ? true
, qtwebengine
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "seafile-client";
version = "9.0.5";
src = fetchFromGitHub {
owner = "haiwen";
repo = "seafile-client";
rev = "v${version}";
sha256 = "sha256-fAPEtULab3Ug4gRCS+Eigp48JkORi7tvic2vp5jaw44=";
};
nativeBuildInputs = [
libuuid
pkg-config
cmake
wrapQtAppsHook
qttools
];
buildInputs = [
seafile-shared
jansson
libsearpc
] ++ lib.optional withShibboleth qtwebengine;
cmakeFlags = lib.optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
qtWrapperArgs = [
"--suffix PATH : ${lib.makeBinPath [ seafile-shared ]}"
];
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; [ schmittlauch greizgh ];
mainProgram = "seafile-applet";
};
}