From 740f7f93142df2cb97d7e448b677f672bc346a6b Mon Sep 17 00:00:00 2001 From: nikstur Date: Wed, 24 May 2023 01:08:58 +0200 Subject: [PATCH] flake: checkInputs -> nativeCheckInputs Use nativeCheckInputs instead of checkInputs because it is more semantically correct even if checkInputs works with Crane. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e006e33..15fafac 100644 --- a/flake.nix +++ b/flake.nix @@ -140,7 +140,7 @@ src = ./rust/tool; extraArgs = { TEST_SYSTEMD = pkgs.systemd; - checkInputs = with pkgs; [ + nativeCheckInputs = with pkgs; [ binutils-unwrapped sbsigntool ];