aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/test.nix b/test.nix
index c4d2f56..17b5f6d 100644
--- a/test.nix
+++ b/test.nix
@@ -1,9 +1,6 @@
-{ system ? builtins.currentSystem, nixpkgs ? <nixpkgs> }:
-
let
- pkgs = import nixpkgs { inherit system; overlays = [ (import ./overlay.nix) ]; };
-in {
- inherit pkgs;
- inherit (pkgs) workadventure;
-}
+ pkgs = import <nixpkgs> {};
+ wapkgs = import ./wapkgs.nix {inherit pkgs; lib = pkgs.lib; };
+in
+ wapkgs.workadventure