#!/usr/bin/env -S nix-shell { pkgs ? import {} }: 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 ''; }