Update shell, include static things

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
Ivan Bushchik 2023-08-13 18:05:23 +03:00
parent 83b12d2483
commit db5cf3fea9
No known key found for this signature in database
GPG key ID: 2F16FBF3262E090C

View file

@ -6,10 +6,10 @@ let pkgs = import <nixpkgs> {
};
};
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 ];
}
) {}