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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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
}