about summary refs log tree commit diff
path: root/pkgs/applications/networking/seafile-client
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-02-24 16:12:31 -0500
committerworldofpeace <worldofpeace@protonmail.ch>2020-02-24 16:12:31 -0500
commit43bb5bffda01e7a6e7c18d24f755b729b43b957a (patch)
treee105f9c9dfb208ebc39f123eedaba58ca6f728e7 /pkgs/applications/networking/seafile-client
parent9237dc588e6c7c0d8166c00d7d551926ac7c288d (diff)
downloadnixlib-43bb5bffda01e7a6e7c18d24f755b729b43b957a.tar
nixlib-43bb5bffda01e7a6e7c18d24f755b729b43b957a.tar.gz
nixlib-43bb5bffda01e7a6e7c18d24f755b729b43b957a.tar.bz2
nixlib-43bb5bffda01e7a6e7c18d24f755b729b43b957a.tar.lz
nixlib-43bb5bffda01e7a6e7c18d24f755b729b43b957a.tar.xz
nixlib-43bb5bffda01e7a6e7c18d24f755b729b43b957a.tar.zst
nixlib-43bb5bffda01e7a6e7c18d24f755b729b43b957a.zip
seafile-client: use qt5's mkDerivation
Fixes #80976
Diffstat (limited to 'pkgs/applications/networking/seafile-client')
-rw-r--r--pkgs/applications/networking/seafile-client/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix
index 1b96e9fb663c..75ba68db3a80 100644
--- a/pkgs/applications/networking/seafile-client/default.nix
+++ b/pkgs/applications/networking/seafile-client/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
+{ mkDerivation, lib, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
 , seafile-shared, ccnet, jansson, libsearpc
 , withShibboleth ? true, qtwebengine }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   pname = "seafile-client";
   version = "7.0.5";
 
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
     ++ lib.optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
 
   qtWrapperArgs = [
-    "--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}"
+    "--suffix PATH : ${lib.makeBinPath [ ccnet seafile-shared ]}"
   ];
 
   meta = with lib; {