diff options
-rw-r--r-- | default.nix | 4 | ||||
-rw-r--r-- | ops/besadii/default.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/default.nix b/default.nix index 61821bce8fc2..b95e73ff3a1f 100644 --- a/default.nix +++ b/default.nix @@ -18,8 +18,8 @@ let config = depot: { inherit depot; - # Expose lib & ciBuilds attributes to packages. - inherit (depot) ciBuilds lib; + # Expose lib attribute to packages. + inherit (depot) lib; # Pass third_party as 'pkgs' (for compatibility with external # imports for certain subdirectories) diff --git a/ops/besadii/default.nix b/ops/besadii/default.nix index bcf83778b73f..c3e2310b6a71 100644 --- a/ops/besadii/default.nix +++ b/ops/besadii/default.nix @@ -1,6 +1,6 @@ # This program is used as a Gerrit hook to trigger builds on # Buildkite, Sourcegraph reindexing and other maintenance tasks. -{ ciBuilds, depot, ... }: +{ depot, ... }: let inherit (builtins) toFile toJSON; |