6 lines
139 B
Nix
6 lines
139 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
name = "squiggle-components";
|
|
buildInputs = with pkgs; [ nodePackages.yarn nodejs ];
|
|
}
|