about summary refs log tree commit diff
path: root/tvix/build/default.nix
blob: 17b52354bbeb8f684ea6352a6deae2373f401c4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ depot, lib, ... }:

(depot.tvix.crates.workspaceMembers.tvix-build.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 = old.passthru // (depot.tvix.utils.mkFeaturePowerset {
    inherit (old) crateName;
    features = [ "tonic-reflection" ];
  });
})