2024-05-26 16:27:10 +02:00
|
|
|
{ depot, lib, ... }:
|
2023-12-09 09:49:47 +01:00
|
|
|
|
2024-05-26 16:27:10 +02:00
|
|
|
(depot.tvix.crates.workspaceMembers.tvix-build.build.override {
|
2023-12-09 09:49:47 +01:00
|
|
|
runTests = true;
|
2024-05-26 16:27:10 +02:00
|
|
|
}).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 = [ "tonic-reflection" ];
|
|
|
|
};
|
|
|
|
})
|