flake: devShell: replace buildInputs with packages

This commit is contained in:
Jacob Birkett 2024-02-10 12:38:46 -07:00
parent 29aef1df84
commit 5b9e5fa889

View file

@ -53,7 +53,7 @@
devShells = eachSystem (_: pkgs: {
default = pkgs.mkShell {
buildInputs = with pkgs; [fontforge python3 pre-commit];
packages = with pkgs; [fontforge python3 pre-commit];
};
});