From 7f81f5fa7c818385cd3f13dab41e2c90143d733a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 23 Aug 2021 00:51:07 +0200 Subject: [PATCH] nix: use checkInputs for GTest --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index f5b2bcf..56d4ecf 100644 --- a/flake.nix +++ b/flake.nix @@ -60,7 +60,7 @@ devShell = pkgs.mkShell { inherit (self.defaultPackage.${system}) - buildInputs + checkInputs nativeBuildInputs ; @@ -82,7 +82,7 @@ pkg-config ]; - buildInputs = with pkgs; [ + checkInputs = with pkgs; [ gtest ];