about summary refs log blame commit diff
path: root/shell.nix
blob: b31e9b4dc2bf46834687f652d40f33b17ee64159 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                               
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell
{
  buildInputs = with pkgs; [
    nodejs
    nodePackages.ts-node
  ];

}