about summary refs log tree commit diff
path: root/pkgs/misc/seafile-shared
diff options
context:
space:
mode:
authorGreizgh <greizgh@ephax.org>2021-04-20 20:01:54 +0200
committerGreizgh <greizgh@ephax.org>2021-10-23 11:34:33 +0200
commit3860ea7bb0735b2a250c68da685bd4bc9d00fe39 (patch)
tree56e70625f96b265ae9b66ee3d4b9ea16f71c4b42 /pkgs/misc/seafile-shared
parent67979f2ff0737783465013a5e06f142a3a6b5b68 (diff)
seafile-shared: build CLI client
Diffstat (limited to 'pkgs/misc/seafile-shared')
-rw-r--r--pkgs/misc/seafile-shared/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/misc/seafile-shared/default.nix b/pkgs/misc/seafile-shared/default.nix
index 195b60115efea..6db3ab932db9e 100644
--- a/pkgs/misc/seafile-shared/default.nix
+++ b/pkgs/misc/seafile-shared/default.nix
@@ -40,12 +40,12 @@ stdenv.mkDerivation rec {
 
   configureFlags = [
     "--disable-server"
-    "--disable-console"
     "--with-python3"
   ];
 
   pythonPath = with python3.pkgs; [
-    libsearpc
+    future
+    pysearpc
   ];
 
   postFixup = ''
@@ -55,8 +55,8 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = "https://github.com/haiwen/seafile";
     description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
-    license = licenses.gpl3;
+    license = licenses.gpl2Plus;
     platforms = platforms.linux;
-    maintainers = [ ];
+    maintainers = with maintainers; [ greizgh schmittlauch ];
   };
 }