mirror of
https://github.com/9001/copyparty.git
synced 2025-08-19 01:42:20 -06:00
* nix: get source tarball with update.py * nix: build from source nix: remove u2c and partyfuse packages The main copyparty package has u2c and partyfuse, so these packages are redundant now nix: add fusepy dependency fix: nix: use replace pyfuse with fusepy * nix: fix extra python packages * nix: add optional dependencies * nix: add partftpy package * nix: add tftp parameter to package * nix: enable pyproject for partftpy package * nix: replace partftpy overlay with real package * nix: add updater for partftpy * nix: bring back local release pin to update.py nix: update local release pin function in update.py --------- Signed-off-by: Toast <39011842+toast003@users.noreply.github.com>
119 lines
3.3 KiB
Nix
119 lines
3.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonApplication,
|
|
fetchurl,
|
|
util-linux,
|
|
python,
|
|
setuptools,
|
|
jinja2,
|
|
impacket,
|
|
pyopenssl,
|
|
cfssl,
|
|
argon2-cffi,
|
|
pillow,
|
|
pyvips,
|
|
pyzmq,
|
|
ffmpeg,
|
|
mutagen,
|
|
pyftpdlib,
|
|
magic,
|
|
partftpy,
|
|
fusepy, # for partyfuse
|
|
|
|
# use argon2id-hashed passwords in config files (sha2 is always available)
|
|
withHashedPasswords ? true,
|
|
|
|
# generate TLS certificates on startup (pointless when reverse-proxied)
|
|
withCertgen ? false,
|
|
|
|
# create thumbnails with Pillow; faster than FFmpeg / MediaProcessing
|
|
withThumbnails ? true,
|
|
|
|
# create thumbnails with PyVIPS; even faster, uses more memory
|
|
# -- can be combined with Pillow to support more filetypes
|
|
withFastThumbnails ? false,
|
|
|
|
# enable FFmpeg; thumbnails for most filetypes (also video and audio), extract audio metadata, transcode audio to opus
|
|
# -- possibly dangerous if you allow anonymous uploads, since FFmpeg has a huge attack surface
|
|
# -- can be combined with Thumbnails and/or FastThumbnails, since FFmpeg is slower than both
|
|
withMediaProcessing ? true,
|
|
|
|
# if MediaProcessing is not enabled, you probably want this instead (less accurate, but much safer and faster)
|
|
withBasicAudioMetadata ? false,
|
|
|
|
# send ZeroMQ messages from event-hooks
|
|
withZeroMQ ? true,
|
|
|
|
# enable FTP server
|
|
withFTP ? true,
|
|
|
|
# enable FTPS support in the FTP server
|
|
withFTPS ? false,
|
|
|
|
# enable TFTP server
|
|
withTFTP ? false,
|
|
|
|
# samba/cifs server; dangerous and buggy, enable if you really need it
|
|
withSMB ? false,
|
|
|
|
# enables filetype detection for nameless uploads
|
|
withMagic ? false,
|
|
|
|
# extra packages to add to the PATH
|
|
extraPackages ? [ ],
|
|
|
|
# function that accepts a python packageset and returns a list of packages to
|
|
# be added to the python venv. useful for scripts and such that require
|
|
# additional dependencies
|
|
extraPythonPackages ? (_p: [ ]),
|
|
|
|
}:
|
|
|
|
let
|
|
pinData = lib.importJSON ./pin.json;
|
|
runtimeDeps = ([ util-linux ] ++ extraPackages ++ lib.optional withMediaProcessing ffmpeg);
|
|
in
|
|
buildPythonApplication {
|
|
pname = "copyparty";
|
|
inherit (pinData) version;
|
|
src = fetchurl {
|
|
inherit (pinData) url hash;
|
|
};
|
|
dependencies =
|
|
[
|
|
jinja2
|
|
fusepy
|
|
]
|
|
++ lib.optional withSMB impacket
|
|
++ lib.optional withFTP pyftpdlib
|
|
++ lib.optional withFTPS pyopenssl
|
|
++ lib.optional withTFTP partftpy
|
|
++ lib.optional withCertgen cfssl
|
|
++ lib.optional withThumbnails pillow
|
|
++ lib.optional withFastThumbnails pyvips
|
|
++ lib.optional withMediaProcessing ffmpeg
|
|
++ lib.optional withBasicAudioMetadata mutagen
|
|
++ lib.optional withHashedPasswords argon2-cffi
|
|
++ lib.optional withZeroMQ pyzmq
|
|
++ lib.optional withMagic magic
|
|
++ (extraPythonPackages python.pkgs);
|
|
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath runtimeDeps}" ];
|
|
|
|
pyproject = true;
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
meta = {
|
|
description = "Turn almost any device into a file server";
|
|
longDescription = ''
|
|
Portable file server with accelerated resumable uploads, dedup, WebDAV,
|
|
FTP, TFTP, zeroconf, media indexer, thumbnails++ all in one file, no deps
|
|
'';
|
|
homepage = "https://github.com/9001/copyparty";
|
|
changelog = "https://github.com/9001/copyparty/releases/tag/v${pinData.version}";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "copyparty";
|
|
sourceProvenance = [ lib.sourceTypes.fromSource ];
|
|
};
|
|
}
|