diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-01-28 13:22:50 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-01-28 13:22:50 -0500 |
commit | 026ca3c8f3f8aa5f3a3a3688c91d3439726c2572 (patch) | |
tree | ed8f8d6358cbe5eeb5be94412b798c7916ea2fc4 /shell.nix | |
parent | shell.nix project.nix spine.nix mkDub.nix (diff) |
nix build -f default.nix, experimental
Diffstat (limited to 'shell.nix')
-rwxr-xr-x | shell.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,9 +4,9 @@ pkgs.mkShell { buildInputs = with pkgs; [ (import ./nix/pkglst/shell-pkgs.nix { inherit pkgs; }) ]; + buildPhase = "nix build -f default.nix"; shellHook = '' - nix-build echo "built spine @ ./result/bin/spine" - nix-instantiate | nix show-derivation | jq + #nix-instantiate | nix show-derivation | jq ''; } |