From ab7e23b0567f4c8a2e29b99c7b09bbe6c2cc3c64 Mon Sep 17 00:00:00 2001 From: natsukium Date: Thu, 21 Dec 2023 14:24:00 +0900 Subject: [PATCH] hnswlib: replace nativeBuildInputs with nativeCheckInputs --- pkgs/development/libraries/hnswlib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/hnswlib/default.nix b/pkgs/development/libraries/hnswlib/default.nix index e67836ebffa5..4c5e46237760 100644 --- a/pkgs/development/libraries/hnswlib/default.nix +++ b/pkgs/development/libraries/hnswlib/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { # this is a header-only library, so we don't need to build it # we need `cmake` only to run tests - nativeBuildInputs = lib.optionals finalAttrs.finalPackage.doCheck [ + nativeCheckInputs = [ cmake python ];