12 lines
366 B
Nix
12 lines
366 B
Nix
|
{ depot, lib, ... }:
|
||
|
|
||
|
(depot.tvix.crates.workspaceMembers.nar-bridge.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" ];
|
||
|
});
|
||
|
})
|