From ead8c570b6dfd00531bf7ada77e08bbd9955b731 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 1 Mar 2021 23:03:38 +0100 Subject: fixed test.nix Previously, it still assumed that there was an ./overlay.nix. Since overlays in general appear to be slightly broken and generate an unwieldy amount of infinite recursion, this is no longer the case and test.nix uses a (slightly uglier) method for testing instead. --- test.nix | 11 ++++------- 1 file 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 ? }: - let - pkgs = import nixpkgs { inherit system; overlays = [ (import ./overlay.nix) ]; }; -in { - inherit pkgs; - inherit (pkgs) workadventure; -} + pkgs = import {}; + wapkgs = import ./wapkgs.nix {inherit pkgs; lib = pkgs.lib; }; +in + wapkgs.workadventure -- cgit v1.2.3