nix-shell support

This commit is contained in:
Xander Mckay 2024-11-02 15:38:15 -04:00
parent 440bd2f153
commit c365937690

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
python312
uv
];
}