2023-08-04 09:11:26 +02:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
|
|
pkgs.mkShell {
|
|
|
|
# nativeBuildInputs is usually what you want -- tools you need to run
|
|
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
|
|
|
2023-10-30 16:15:08 +01:00
|
|
|
nodejs
|
2023-10-25 17:32:19 +02:00
|
|
|
haxe
|
2023-10-11 13:46:38 +02:00
|
|
|
mmark
|
|
|
|
xml2rfc
|
2023-12-20 18:44:03 +01:00
|
|
|
dendrite
|
2023-08-04 09:11:26 +02:00
|
|
|
|
|
|
|
];
|
2023-12-20 18:44:03 +01:00
|
|
|
|
|
|
|
shellHooks = ''
|
|
|
|
bash
|
|
|
|
'';
|
2023-08-04 09:11:26 +02:00
|
|
|
}
|