2024-05-26 16:27:10 +02:00
|
|
|
{ depot, lib, ... }:
|
2023-01-31 12:18:03 +01:00
|
|
|
|
2024-05-26 16:27:10 +02:00
|
|
|
(depot.tvix.crates.workspaceMembers.nix-compat.build.override {
|
2023-01-31 12:18:03 +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);
|
2024-08-16 01:06:25 +02:00
|
|
|
passthru = old.passthru // (depot.tvix.utils.mkFeaturePowerset {
|
2024-05-26 16:27:10 +02:00
|
|
|
inherit (old) crateName;
|
|
|
|
features = [ "async" "wire" ];
|
2024-08-16 01:06:25 +02:00
|
|
|
});
|
2024-05-26 16:27:10 +02:00
|
|
|
})
|