initial app add

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-07-15 19:17:57 -04:00
commit 1736643635
9 changed files with 642 additions and 0 deletions

49
shell.nix Normal file
View File

@ -0,0 +1,49 @@
{
self,
inputs,
checks,
system,
...
}:
let
inherit (inputs) nixpkgs;
pkgs = nixpkgs.legacyPackages.${system};
# construct the shell provided by pre-commit for running hooks
pre-commit = pkgs.mkShell {
inherit (checks.pre-commit-check) shellHook;
buildInputs = checks.pre-commit-check.enabledPackages;
};
# constructs a custom shell with commonly used utilities
rad-dev = pkgs.mkShell {
packages = with pkgs; [
deadnix
pre-commit
treefmt
statix
nixfmt-rfc-style
];
};
# constructs the application in-place
app = pkgs.mkShell{
inputsFrom = [self.packages.${system}.myapp];
};
# pull in python/poetry dependencies
poetry = pkgs.mkShell {
pacakges = [pkgs.poetry];
};
in
{
default = pkgs.mkShell {
inputsFrom = [
pre-commit
rad-dev
app
poetry
];
};
}