about summary refs log tree commit diff
path: root/shell.nix
blob: 606384d2a24996fe1e4c32128d80e8b6e886073e (plain) (blame)
1
2
3
4
5
6
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  nativeBuildInputs = with pkgs; [
    zig
  ];
}