a72e67c8af
Sadly, this can't quite be an alias (which would be difficult to automatically set up anyways), since we want to check if an r/number is part of the (upstream) canon branch. The test script for the subcommand doubles up as a soundness check for our pipelines ref creation. Change-Id: I840af6556e50187c69490668bd8a18dd7dc25a86 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8844 Tested-by: BuildkiteCI Autosubmit: sterni <sternenseemann@systemli.org> Reviewed-by: flokli <flokli@flokli.de>
34 lines
939 B
Nix
34 lines
939 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";
|
|
fetch-depot-inbox.attr = "tools.fetch-depot-inbox";
|
|
git-r.attr = "tools.git-r";
|
|
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-buildkite = {
|
|
attr = "ops.buildkite.terraform";
|
|
cmd = "terraform";
|
|
};
|
|
|
|
tf-glesys = {
|
|
attr = "ops.glesys.terraform";
|
|
cmd = "terraform";
|
|
};
|
|
|
|
tf-keycloak = {
|
|
attr = "ops.keycloak.terraform";
|
|
cmd = "terraform";
|
|
};
|
|
}
|