#!/usr/bin/env -S nix-shell --pure { pkgs ? import {} }: pkgs.mkShell { buildInputs = with pkgs; [ # nix_related nixFlakes nix-prefetch-git validatePkgConfig jq git # d_build_related rund dub ldc #meson # search_sqlite_related # search related sqlite # candy starship ]; shellHook = '' if [[ -e ".envrc" ]]; then source .envrc fi eval "$(starship init bash)" ''; }