Initial commit.

This commit is contained in:
CronyAkatsuki 2024-03-07 19:29:34 +01:00
commit 3217a3dec1
6 changed files with 721 additions and 0 deletions

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "hb-downloader";
buildInputs = [
(pkgs.python3.withPackages ( pyPkgs: [
pyPkgs.requests
]))
pkgs.aria2
];
}