diff options
Diffstat (limited to 'shell.nix')
-rwxr-xr-x | shell.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,10 +2,11 @@ { pkgs ? import <nixpkgs> {} }: pkgs.mkShell { buildInputs = with pkgs; [ - (import ./nix/shell-packages.nix { inherit pkgs; }) + (import ./nix/pkglst/shell-pkgs.nix { inherit pkgs; }) ]; shellHook = '' nix-build echo "built spine @ ./result/bin/spine" + nix-instantiate | nix show-derivation | jq ''; } |