tvl-depot/boilerplate/typescript/shell.nix

10 lines
152 B
Nix
Raw Normal View History

let
briefcase = import <briefcase> {};
pkgs = briefcase.third_party.pkgs;
in pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
yarn
];
}