support DLSite's multipart RAR archives for larger works

This commit is contained in:
xenofem 2024-03-15 16:00:37 -04:00
parent 894b1d34b6
commit 9ab587d399
3 changed files with 63 additions and 25 deletions

View file

@ -6,6 +6,7 @@
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
};
in {
packages.x86_64-linux = with pkgs.python3Packages; rec {
@ -58,6 +59,7 @@
importlib-resources
setuptools
libsixel
(rarfile.override { useUnrar = true; })
];
src = ./.;
};