1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-13 15:25:01 +00:00
mon-entreprise/default.nix

15 lines
240 B
Nix
Raw Normal View History

2024-07-11 21:48:19 +02:00
{ 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
'';
2024-07-11 21:48:19 +02:00
}