mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-13 09:35:06 +00:00
14 lines
240 B
Nix
14 lines
240 B
Nix
{ pkgs ? import <nixos-unstable> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs
|
|
yarn
|
|
cypress
|
|
];
|
|
|
|
shellHook = ''
|
|
export CYPRESS_INSTALL_BINARY=0
|
|
export CYPRESS_RUN_BINARY=${pkgs.cypress}/bin/Cypress
|
|
'';
|
|
}
|
|
|