dotfiles/dev-shells/zig-bootstrap.nix
2024-04-21 13:15:23 +02:00

12 lines
136 B
Nix

{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
ninja
cmake
python3
zlib
];
hardeningDisable = [ "all" ];
}