aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: 17ccd5bd3bed32c383393ddb8a528ea70d2b33ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env -S nix-shell
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  buildInputs = with pkgs; [
    (import ./nix/pkglst/shell-pkgs.nix { inherit pkgs; })
  ];
  buildPhase = "nix build -f default.nix";
  shellHook = ''
    echo "built spine @ ./result/bin/spine"
    #nix-instantiate | nix show-derivation | jq
  '';
}