diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-01-27 10:45:51 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-01-27 15:33:24 -0500 |
commit | d0465e3837a71afae2f1a6f42eb923350d826e27 (patch) | |
tree | 7e2eda3dce2ee7199044ef2cc4f53652e593e261 /shell.nix | |
parent | mkDub.nix project.nix spine.nix (diff) |
shell.nix project.nix spine.nix mkDub.nix
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 ''; } |