mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 09:22:31 -06:00
nix: add tftp parameter to package
This commit is contained in:
parent
9858b714b4
commit
6bd0172353
|
@ -17,6 +17,7 @@
|
||||||
mutagen,
|
mutagen,
|
||||||
pyftpdlib,
|
pyftpdlib,
|
||||||
magic,
|
magic,
|
||||||
|
partftpy,
|
||||||
fusepy, # for partyfuse
|
fusepy, # for partyfuse
|
||||||
|
|
||||||
# use argon2id-hashed passwords in config files (sha2 is always available)
|
# use argon2id-hashed passwords in config files (sha2 is always available)
|
||||||
|
@ -49,6 +50,9 @@
|
||||||
# enable FTPS support in the FTP server
|
# enable FTPS support in the FTP server
|
||||||
withFTPS ? false,
|
withFTPS ? false,
|
||||||
|
|
||||||
|
# enable TFTP server
|
||||||
|
withTFTP ? false,
|
||||||
|
|
||||||
# samba/cifs server; dangerous and buggy, enable if you really need it
|
# samba/cifs server; dangerous and buggy, enable if you really need it
|
||||||
withSMB ? false,
|
withSMB ? false,
|
||||||
|
|
||||||
|
@ -83,6 +87,7 @@ buildPythonApplication {
|
||||||
++ lib.optional withSMB impacket
|
++ lib.optional withSMB impacket
|
||||||
++ lib.optional withFTP pyftpdlib
|
++ lib.optional withFTP pyftpdlib
|
||||||
++ lib.optional withFTPS pyopenssl
|
++ lib.optional withFTPS pyopenssl
|
||||||
|
++ lib.optional withTFTP partftpy
|
||||||
++ lib.optional withCertgen cfssl
|
++ lib.optional withCertgen cfssl
|
||||||
++ lib.optional withThumbnails pillow
|
++ lib.optional withThumbnails pillow
|
||||||
++ lib.optional withFastThumbnails pyvips
|
++ lib.optional withFastThumbnails pyvips
|
||||||
|
|
Loading…
Reference in a new issue