From 5b9e5fa889b0016d54fe30dce6744af710f5fb5a Mon Sep 17 00:00:00 2001 From: Jacob Birkett Date: Sat, 10 Feb 2024 12:38:46 -0700 Subject: [PATCH] flake: devShell: replace buildInputs with packages --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8e8c2ef..8bb9eef 100644 --- a/flake.nix +++ b/flake.nix @@ -53,7 +53,7 @@ devShells = eachSystem (_: pkgs: { default = pkgs.mkShell { - buildInputs = with pkgs; [fontforge python3 pre-commit]; + packages = with pkgs; [fontforge python3 pre-commit]; }; });