diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-20T21·49+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-20T21·49+0000 |
commit | 902500c4ead7166274187dcb776048d2ecd86bfa (patch) | |
tree | 6366da366574bda607471c88df2223b344b31634 /nix | |
parent | b98c60ecca79bbdea08a69a55992dac7f0b7f009 (diff) |
fix(yants): Allow extra import arguments r/249
Required for readTree compatibility.
Diffstat (limited to 'nix')
-rw-r--r-- | nix/yants/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/yants/default.nix b/nix/yants/default.nix index 2167b6e8b71f..aacc156b433b 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 {}; |