xrfragment-haxe/src/3rd/js/plugin/matrix/shell.nix

19 lines
291 B
Nix
Raw Normal View History

2024-01-09 11:05:13 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
nodejs
haxe
mmark
xml2rfc
esbuild
];
shellHooks = ''
bash
'';
}