hb-downloader/shell.nix

12 lines
189 B
Nix
Raw Normal View History

2024-03-07 19:29:34 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "hb-downloader";
buildInputs = [
(pkgs.python3.withPackages ( pyPkgs: [
pyPkgs.requests
]))
pkgs.aria2
];
}