tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
seafile-shared: build CLI client
Greizgh
4 years ago
3860ea7b
67979f2f
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
misc
seafile-shared
default.nix
+4
-4
pkgs/misc/seafile-shared/default.nix
···
40
40
41
41
configureFlags = [
42
42
"--disable-server"
43
43
-
"--disable-console"
44
43
"--with-python3"
45
44
];
46
45
47
46
pythonPath = with python3.pkgs; [
48
48
-
libsearpc
47
47
+
future
48
48
+
pysearpc
49
49
];
50
50
51
51
postFixup = ''
···
55
55
meta = with lib; {
56
56
homepage = "https://github.com/haiwen/seafile";
57
57
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
58
58
-
license = licenses.gpl3;
58
58
+
license = licenses.gpl2Plus;
59
59
platforms = platforms.linux;
60
60
-
maintainers = [ ];
60
60
+
maintainers = with maintainers; [ greizgh schmittlauch ];
61
61
};
62
62
}