diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-13T21·32+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-13T21·32+0000 |
commit | 00129e06b2b4968a2e988c177c8d6650120aa278 (patch) | |
tree | ed362cb2643d24df218b5d6a1efce678492f8c19 /default.nix | |
parent | dc6e0e86ad7b73ff8fe9b3d83a7231dedbaf57b0 (diff) |
fix(build): Make repository callable in Nix r/128
This is required for some things that expect package sets to be callable, e.g. Nixery.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/default.nix b/default.nix index f69c96ab4cc9..b53aadcaf2e8 100644 --- a/default.nix +++ b/default.nix @@ -5,6 +5,8 @@ # This makes packages accessible via the Nixery instance that is configured to # use this repository as its nixpkgs source. +{ ... }@args: + with builtins; let |