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