diff options
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/module.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nix/module.nix b/nix/module.nix index cf334f2..126473d 100644 --- a/nix/module.nix +++ b/nix/module.nix | |||
| @@ -17,6 +17,13 @@ let | |||
| 17 | 17 | ||
| 18 | nativeBuildInputs = with pkgs; [ pkg-config ]; | 18 | nativeBuildInputs = with pkgs; [ pkg-config ]; |
| 19 | buildInputs = with pkgs; [ openssl ]; | 19 | buildInputs = with pkgs; [ openssl ]; |
| 20 | |||
| 21 | # Skip tests that require git in PATH (sandboxing issue) | ||
| 22 | checkFlags = [ | ||
| 23 | "--skip=git::subprocess::tests::" | ||
| 24 | "--skip=git::tests::" | ||
| 25 | "--skip=purgatory::helpers::tests::" | ||
| 26 | ]; | ||
| 20 | }; | 27 | }; |
| 21 | 28 | ||
| 22 | # Per-instance options | 29 | # Per-instance options |