tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
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
41
configureFlags = [
42
"--disable-server"
43
-
"--disable-console"
44
"--with-python3"
45
];
46
47
pythonPath = with python3.pkgs; [
48
-
libsearpc
0
49
];
50
51
postFixup = ''
···
55
meta = with lib; {
56
homepage = "https://github.com/haiwen/seafile";
57
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
58
-
license = licenses.gpl3;
59
platforms = platforms.linux;
60
-
maintainers = [ ];
61
};
62
}
···
40
41
configureFlags = [
42
"--disable-server"
0
43
"--with-python3"
44
];
45
46
pythonPath = with python3.pkgs; [
47
+
future
48
+
pysearpc
49
];
50
51
postFixup = ''
···
55
meta = with lib; {
56
homepage = "https://github.com/haiwen/seafile";
57
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
58
+
license = licenses.gpl2Plus;
59
platforms = platforms.linux;
60
+
maintainers = with maintainers; [ greizgh schmittlauch ];
61
};
62
}