feat: port-tools

Very unfinished, but it's useful as-is!
This commit is contained in:
Madeleine Sydney
2025-02-21 21:14:41 -07:00
parent 539c906149
commit cf8b6e7ba1
8 changed files with 103 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {}
}:
pkgs.writeShellScriptBin "ports" ''
${pkgs.babashka}/bin/bb --init "${./ports}" -m port-tools -- "$@" || exit=$?
exit $exit
''