about summary refs log tree commit diff
path: root/nix/dependency-analyzer/examples/ci-targets.nix
blob: 597abd410961c537f816fdf877e9709e52160b71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ depot, lib, ... }:

(
  depot.nix.dependency-analyzer.knownDependencyGraph
    "depot"
    depot.ci.targets
).overrideAttrs (old: {
  # Causes an infinite recursion via ci.targets otherwise
  meta = lib.recursiveUpdate (old.meta or { }) {
    ci.skip = true;
  };
})