squiggle/shell.nix

6 lines
125 B
Nix
Raw Normal View History

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