From db5cf3fea9fbe9b6318735aa34c384b04b457d87 Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Sun, 13 Aug 2023 18:05:23 +0300 Subject: [PATCH] Update shell, include static things Signed-off-by: Ivan Bushchik --- shells/crossShell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shells/crossShell.nix b/shells/crossShell.nix index 7d00a90..2d769ee 100644 --- a/shells/crossShell.nix +++ b/shells/crossShell.nix @@ -6,10 +6,10 @@ let pkgs = import { }; }; in - pkgs.callPackage ( - {mkShell, pkg-config, zlib}: + pkgs.pkgsStatic.callPackage ( + {mkShell, pkg-config, zlib, file}: mkShell { - nativeBuildInputs = [ pkg-config ]; + nativeBuildInputs = [ pkg-config file]; buildInputs = [ zlib ]; } ) {}