git.s-ol.nu isomorphic-kb-explorer / main shell.nix
main

Tree @main (Download .tar.gz)

shell.nix @mainraw · history · blame

{ pkgs ? import <nixpkgs> {}
}:

pkgs.mkShell {
  name = "spline-env";
  buildInputs = with pkgs; [
    nodejs
    yarn
  ];
}