{ description = "A Nix-flake-based Protobuf development environment"; inputs = { flake-utils.url = "github:numtide/flake-utils"; nixpkgs.url = "github:NixOS/nixpkgs"; }; outputs = { self , flake-utils , nixpkgs }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; in { devShell = pkgs.mkShell { buildInputs = with pkgs; [ nickel ]; shellHook = '' ${pkgs.nickel}/bin/nickel --version ''; }; }); }