From 755ad28e6b4365144f7310f1e708e0b3ac868422 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 3 Jan 2022 13:59:23 -0500 Subject: [PATCH] let through arbitrary other args meh this is not great but tests.nix passes through a bunch of its args that get captured in the args set... probably need to write and use set subtraction to get them out, I guess. First, see if this works though. --- default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/default.nix b/default.nix index d07b203..a0d8f5b 100644 --- a/default.nix +++ b/default.nix @@ -6,6 +6,7 @@ in , mach-nix ? import sources.mach-nix { inherit pkgs pypiData; } , tahoe-lafs-source ? "tahoe-lafs" , tahoe-lafs-repo ? sources.${tahoe-lafs-source} +, ... }: let lib = pkgs.lib; -- GitLab