{ description = "Protobufs But Awesomer as rewritten in Zig"; inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-26.05"; }; outputs = { self, nixpkgs, ... }@inputs: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in { devShells.${system}.default = pkgs.mkShell { name = "pba-zig-dev"; packages = with pkgs; [ # generator toolchain zig_0_16 # for building and checking generated C gcc clang meson ninja clang-tools valgrind bear ]; }; }; }