{ pkgs ? import {} }: let tidyfox = import ./default.nix { inherit pkgs; }; in pkgs.mkShell.override { stdenv = tidyfox.stdenv; } { name = "tidyfox"; nativeBuildInputs = with pkgs; [ just ]; inputsFrom = [ tidyfox ]; }