feat: first commit

This commit is contained in:
CronyAkatsuki 2025-12-21 09:05:07 +01:00
commit b90bd077d9
24 changed files with 935 additions and 0 deletions

16
default.nix Normal file
View file

@ -0,0 +1,16 @@
{pkgs ? import <nixpkgs> {}}:
with pkgs.python3Packages;
buildPythonPackage rec {
name = "extract-romset";
src = ./.;
pyproject = true;
build-system = [setuptools];
# dependencies = [requests pkgs.aria2];
meta.mainProgram = "hb-downloader";
postInstall = ''
mv -v $out/bin/hb_downloader.py $out/bin/hb-downloader
'';
}