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; [
|
|
|
|
|
|
|
|
haxe
|
|
|
|
python3
|
|
|
|
nodejs-slim_20
|
|
|
|
|
|
|
|
# extra
|
2023-08-08 12:40:38 +02:00
|
|
|
#php82
|
|
|
|
#mono
|
|
|
|
#jdk
|
2023-08-04 09:11:26 +02:00
|
|
|
|
|
|
|
];
|
|
|
|
}
|