diff options
author | sterni <sternenseemann@systemli.org> | 2021-04-20T08·27+0200 |
---|---|---|
committer | sterni <sternenseemann@systemli.org> | 2021-04-20T08·42+0000 |
commit | d485ebf01a7e554bd8d43fb17e4a19d6145a6a6b (patch) | |
tree | ac3097c8312157cd2c046e2ed46aac3a565caf48 /web | |
parent | 502eb38ac431c75a825041fe35e6033b855772e4 (diff) |
fix(bubblegum): import lib from the new correct place r/2526
Since cl/2910 depot has no lib attribute anymore. Import it from the depot fix point via depot.third_party.nixpkgs.lib to avoid passing another argument and enlargening the shebang further. Change-Id: I3c719eba38a5ceb36689ebf0409bd19d4f46a609 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3050 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'web')
-rw-r--r-- | web/bubblegum/examples/blog.nix | 2 | ||||
-rw-r--r-- | web/bubblegum/examples/hello.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/bubblegum/examples/blog.nix b/web/bubblegum/examples/blog.nix index 213fbb7d19ba..9359d38fa28e 100644 --- a/web/bubblegum/examples/blog.nix +++ b/web/bubblegum/examples/blog.nix @@ -1,7 +1,7 @@ { depot, ... }: let - inherit (depot) + inherit (depot.third_party.nixpkgs) lib ; diff --git a/web/bubblegum/examples/hello.nix b/web/bubblegum/examples/hello.nix index f6706eb2177e..db04d4082371 100644 --- a/web/bubblegum/examples/hello.nix +++ b/web/bubblegum/examples/hello.nix @@ -1,7 +1,7 @@ { depot, ... }: let - inherit (depot) + inherit (depot.third_party.nixpkgs) lib ; |