about summary refs log blame commit diff
path: root/shells/zig.nix
blob: 85b626c334fcbebfd4bb89c79e15a1f89f883882 (plain) (tree)
1
2
3
4
5
6
7





                                
 
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  name = "zig-shell";
  buildInputs = with pkgs; [
    zig
  ];
}