#!/usr/bin/env -S nix-shell { pkgs ? import { overlays = [ (import ../overlays/ldcVersion.nix) ]; } }: pkgs.mkShell { buildInputs = with pkgs; [ (import ./packages-ldc.nix { inherit pkgs; }) ]; shellHook = '' # nix-build ## nix-build -I nixpkgs= ## nix-build -I nixpkgs=/nixpkgs-ra/nixpkgs ''; }