mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
11 lines
249 B
Nix
11 lines
249 B
Nix
let
|
|
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/23.11.tar.gz") {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
];
|
|
|
|
shellHook = ''
|
|
export GODOT_XTERM_CHROME_PATH=${pkgs.chromium}/bin/chromium
|
|
'';
|
|
}
|