feat: first commit
This commit is contained in:
commit
b90bd077d9
24 changed files with 935 additions and 0 deletions
16
default.nix
Normal file
16
default.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue