download tweaks, - fooyin, flake updt, modules

This commit is contained in:
2024-11-01 17:53:27 -06:00
parent 5d7fb596d2
commit b43d2f5a31
6 changed files with 59 additions and 76 deletions

21
pkgs/download/default.nix Normal file
View File

@@ -0,0 +1,21 @@
{
python3Packages,
gallery-dl,
ffmpeg,
...
}:
python3Packages.buildPythonApplication {
pname = "download";
version = "2.5";
src = ../../scripts/download/.;
build-system = [ python3Packages.setuptools ];
dependencies = with python3Packages; [
pyyaml
types-pyyaml
yt-dlp
];
propagatedBuildInputs = [
gallery-dl
ffmpeg
];
}