fe78a53bc9
The camelCase variant of `rebuild-system` doesn't exist, but the kebab-case version does. Side note: this `lazy-dispatch` upgrade is pretty cool. TIL `direnv` supports `watch_file` and `PATH_add`. Change-Id: Idc9109a9b0de327ddf7b9c6a4368b7bebb551196 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5565 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: wpcarro <wpcarro@gmail.com>
27 lines
769 B
Nix
27 lines
769 B
Nix
# Shell derivation to invoke //nix/lazy-deps with the dependencies
|
|
# that should be lazily made available in depot.
|
|
{ pkgs, depot, ... }:
|
|
|
|
depot.nix.lazy-deps {
|
|
age-keygen.attr = "third_party.nixpkgs.age";
|
|
age.attr = "third_party.nixpkgs.age";
|
|
depotfmt.attr = "tools.depotfmt";
|
|
gerrit-update.attr = "tools.gerrit-update";
|
|
gerrit.attr = "tools.gerrit-cli";
|
|
hash-password.attr = "tools.hash-password";
|
|
mg.attr = "tools.magrathea";
|
|
nint.attr = "nix.nint";
|
|
niv.attr = "third_party.nixpkgs.niv";
|
|
rebuild-system.attr = "ops.nixos.rebuild-system";
|
|
rink.attr = "third_party.nixpkgs.rink";
|
|
|
|
tf-glesys = {
|
|
attr = "ops.glesys.terraform";
|
|
cmd = "terraform";
|
|
};
|
|
|
|
tf-keycloak = {
|
|
attr = "ops.keycloak.terraform";
|
|
cmd = "terraform";
|
|
};
|
|
}
|