about summary refs log tree commit diff
path: root/tests/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/default.nix')
-rw-r--r--tests/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/default.nix b/tests/default.nix
index c9cafe6c..44167e07 100644
--- a/tests/default.nix
+++ b/tests/default.nix
@@ -1,8 +1,11 @@
-{ system ? builtins.currentSystem, ... }:
+{ system ? builtins.currentSystem
+, nixpkgsPath ? import ../nixpkgs-path.nix
+, ...
+}:
 
 let
   callTest = path: import ./make-test.nix (import path) {
-    inherit system;
+    inherit system nixpkgsPath;
   };
 
 in {