about summary refs log tree commit diff
path: root/tools/depot-deps.nix
blob: eabd6484c36743a72c0740f0be911859471c7d8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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";
  };
}