add test suite, help/exit functionality

This commit is contained in:
mtgmonkey 2025-06-27 16:34:26 -04:00
parent a183d55b69
commit 6d162f5ae9
7 changed files with 441 additions and 69 deletions

View file

@ -6,6 +6,9 @@
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system}.default = pkgs.callPackage ./package.nix {};
packages.${system} = {
default = pkgs.callPackage ./package.nix {};
test = pkgs.callPackage ./test.nix {};
};
};
}