about summary refs log tree commit diff
path: root/nix/yants
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-20T21·49+0000
committerVincent Ambo <tazjin@google.com>2019-12-20T21·49+0000
commit902500c4ead7166274187dcb776048d2ecd86bfa (patch)
tree6366da366574bda607471c88df2223b344b31634 /nix/yants
parentb98c60ecca79bbdea08a69a55992dac7f0b7f009 (diff)
fix(yants): Allow extra import arguments r/249
Required for readTree compatibility.
Diffstat (limited to 'nix/yants')
-rw-r--r--nix/yants/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/yants/default.nix b/nix/yants/default.nix
index 2167b6e8b7..aacc156b43 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 {};