migrated tasks and downloads to this flake
This commit is contained in:
19
src/download/shell.nix
Normal file
19
src/download/shell.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
}:
|
||||
|
||||
let
|
||||
pythonPackages = builtins.attrValues {
|
||||
inherit (pkgs.python3Packages) setuptools pyyaml types-pyyaml;
|
||||
};
|
||||
otherPackages = builtins.attrValues {
|
||||
inherit (pkgs) yt-dlp gallery-dl ffmpeg;
|
||||
};
|
||||
in
|
||||
|
||||
pkgs.mkShell {
|
||||
packages = [
|
||||
(pkgs.python3.withPackages (_ps: pythonPackages))
|
||||
] ++ otherPackages;
|
||||
buildInputs = [ ];
|
||||
}
|
||||
Reference in New Issue
Block a user