nix: use checkInputs for GTest

This commit is contained in:
Bruno BELANYI 2021-08-23 00:51:07 +02:00
parent c06444f90c
commit 7f81f5fa7c

View file

@ -60,7 +60,7 @@
devShell = pkgs.mkShell { devShell = pkgs.mkShell {
inherit (self.defaultPackage.${system}) inherit (self.defaultPackage.${system})
buildInputs checkInputs
nativeBuildInputs nativeBuildInputs
; ;
@ -82,7 +82,7 @@
pkg-config pkg-config
]; ];
buildInputs = with pkgs; [ checkInputs = with pkgs; [
gtest gtest
]; ];