about summary refs log blame commit diff
path: root/tvix/tracing/default.nix
blob: a4fe3a5d90c3209086b3fe4fb0390e2e70e645cf (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                                                   
{ depot, lib, ... }:

(depot.tvix.crates.workspaceMembers.tvix-tracing.build.override {
  runTests = true;
}).overrideAttrs (old: rec {
  meta.ci.targets = lib.filter (x: lib.hasPrefix "with-features" x || x == "no-features") (lib.attrNames passthru);
  passthru = depot.tvix.utils.mkFeaturePowerset {
    inherit (old) crateName;
    features = [ "otlp" ];
  };
})