about summary refs log tree commit diff
path: root/lib/get-tests.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-04-03 03:50:55 +0200
committeraszlig <aszlig@nix.build>2018-04-03 03:50:55 +0200
commite603e0fd1ed6e919beb8d31d3c69ad70f002f539 (patch)
treed29472f08baf477ffc0cb615fe9eb4835d0f89be /lib/get-tests.nix
parent2cde2ae48b0e8c4cc2d73b4fd2e40c1a8a7006ad (diff)
tests: Pass in nixpkgs source from release.nix
Another point where we rely on nixpkgs-path.nix from within release.nix,
where we already have the correct path to nixpkgs passed as an argument.

So let's simply pass that argument along to the actual test.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'lib/get-tests.nix')
-rw-r--r--lib/get-tests.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/get-tests.nix b/lib/get-tests.nix
index 2f78f58c..f14ee3cc 100644
--- a/lib/get-tests.nix
+++ b/lib/get-tests.nix
@@ -19,5 +19,6 @@ with import "${nixpkgs}/lib";
 
   vuizvui = removeAttrs (import vuizvuiTests {
     inherit system;
+    nixpkgsPath = nixpkgs;
   }) (optional excludeVuizvuiGames "games");
 }