squiggle/shell.nix
2022-01-28 21:55:03 +11:00

6 lines
133 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "squiggle";
buildInputs = with pkgs; [ yarn yarn2nix nodePackages.npm ];
}