607c651b97
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 6.1.6 with grep in /nix/store/304wh7gzixm9as2wa2b619jcimn0837k-seafile-client-6.1.6 - found 6.1.6 in filename of file in /nix/store/304wh7gzixm9as2wa2b619jcimn0837k-seafile-client-6.1.6
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, writeScript, pkgconfig, cmake, qtbase, qttools
|
|
, seafile-shared, ccnet, makeWrapper
|
|
, withShibboleth ? true, qtwebengine }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "6.1.6";
|
|
name = "seafile-client-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "haiwen";
|
|
repo = "seafile-client";
|
|
rev = "v${version}";
|
|
sha256 = "0r02frlspjq8k0zz1z4wh2sx3jm6b1qby5mxg394sb3rjdxb8jhk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
|
|
buildInputs = [ qtbase qttools seafile-shared ]
|
|
++ optional withShibboleth qtwebengine;
|
|
|
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
|
|
++ optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/seafile-applet \
|
|
--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}
|
|
'';
|
|
|
|
meta = with stdenv.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 = [ ];
|
|
};
|
|
}
|