diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·40+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-09T02·40+0000 |
commit | 01bad09eedc97c1437b5bbe4910f6b3b13b23ca0 (patch) | |
tree | 212cf4c82edfda475bba67bafbd4e793c28e24eb /read-tree.nix | |
parent | 688233acac967178588943061992455b91cbda03 (diff) |
refactor: Introduce new layout with nixpkgs in third_party r/100
This is not the final layout yet, but makes it so that my top-level attribute set is no longer overlaid into nixpkgs itself. This is useful for other people who are importing my monorepo.
Diffstat (limited to 'read-tree.nix')
-rw-r--r-- | read-tree.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/read-tree.nix b/read-tree.nix index 72e4d0453add..b2f161e885e1 100644 --- a/read-tree.nix +++ b/read-tree.nix @@ -1,4 +1,7 @@ -initPath: { pkgs, ... } @ args: +# TODO(tazjin): if there's a default.nix, keep traversing but don't import .nix files? +# TODO(tazjin): avoid {} by only calling functions *after* checking what they are + +args: initPath: let inherit (builtins) |