hb-downloader/shell.nix

14 lines
218 B
Nix

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