aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/seafile-client
diff options
context:
space:
mode:
authorGreizgh <greizgh@ephax.org>2019-08-22 08:14:38 +0200
committerworldofpeace <worldofpeace@protonmail.ch>2019-08-23 10:32:44 -0400
commit041c82eb407717eba18e22e63745ddbd6238b051 (patch)
tree002263a408840949faf59e0daa58d154fe58453d /pkgs/applications/networking/seafile-client
parent9fd5b752e1397ae498d0f062594a6d451523d46d (diff)
seafile-client: Use qt5's mkDerivation
Following guidelines from #65399
Diffstat (limited to 'pkgs/applications/networking/seafile-client')
-rw-r--r--pkgs/applications/networking/seafile-client/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix
index 543afc696ea..e93410d2669 100644
--- a/pkgs/applications/networking/seafile-client/default.nix
+++ b/pkgs/applications/networking/seafile-client/default.nix
@@ -1,10 +1,10 @@
-{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
-, seafile-shared, ccnet, makeWrapper
+{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
+, seafile-shared, ccnet
, withShibboleth ? true, qtwebengine }:
with stdenv.lib;
-stdenv.mkDerivation rec {
+mkDerivation rec {
version = "6.2.11";
name = "seafile-client-${version}";
@@ -15,17 +15,16 @@ stdenv.mkDerivation rec {
sha256 = "1b8jqmr2qd3bpb3sr4p5w2a76x5zlknkj922sxrvw1rdwqhkb2pj";
};
- nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
+ nativeBuildInputs = [ pkgconfig cmake ];
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 ]}
- '';
+ qtWrapperArgs = [
+ "--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}"
+ ];
meta = with stdenv.lib; {
homepage = https://github.com/haiwen/seafile-client;