fix(bubblegum): import lib from the new correct place

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>
This commit is contained in:
sterni 2021-04-20 10:27:40 +02:00
parent 502eb38ac4
commit d485ebf01a
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ depot, ... }:
let
inherit (depot)
inherit (depot.third_party.nixpkgs)
lib
;

View file

@ -1,7 +1,7 @@
{ depot, ... }:
let
inherit (depot)
inherit (depot.third_party.nixpkgs)
lib
;