From 902500c4ead7166274187dcb776048d2ecd86bfa Mon Sep 17 00:00:00 2001
From: Vincent Ambo <tazjin@google.com>
Date: Fri, 20 Dec 2019 21:49:00 +0000
Subject: [PATCH] fix(yants): Allow extra import arguments

Required for readTree compatibility.
---
 nix/yants/default.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix/yants/default.nix b/nix/yants/default.nix
index 2167b6e8b..aacc156b4 100644
--- a/nix/yants/default.nix
+++ b/nix/yants/default.nix
@@ -6,7 +6,7 @@
 #
 # All types (should) compose as expected.
 
-{ lib ?  (import <nixpkgs> {}).lib }:
+{ lib ?  (import <nixpkgs> {}).lib, ... }:
 
 with builtins; let
   prettyPrint = lib.generators.toPretty {};