mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
15 lines
243 B
Nix
15 lines
243 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> {};
|
||
|
in pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
cypress
|
||
|
nodejs-16_x
|
||
|
xsel
|
||
|
];
|
||
|
|
||
|
shellHook = ''
|
||
|
export CYPRESS_INSTALL_BINARY=0
|
||
|
export CYPRESS_RUN_BINARY=${pkgs.cypress}/bin/Cypress
|
||
|
'';
|
||
|
}
|