fix(tvix): Add remote path info service back

This commit is contained in:
sinavir 2024-07-20 20:13:00 +02:00
parent b9f8a02e3b
commit ca91cdb33b
4 changed files with 1268 additions and 24 deletions

View file

@ -2,6 +2,6 @@
fetchgit { fetchgit {
name = "tvix"; name = "tvix";
url = "https://cl.tvl.fyi/depot"; url = "https://cl.tvl.fyi/depot";
rev = "refs/changes/25/11925/4"; rev = "fdc0cf0c94827fc4940c9f8ac4d310d57aec9f35";
hash = "sha256-iTkHg7YJgusq7c27rhILMsxPKTLOcL3H/0y6xFkttok="; hash = "sha256-KGRtHG0zBk+UJQFTztr/ZatS86VccjFlOK0BCcXWWeY=";
} }

File diff suppressed because it is too large Load diff

22
pkgs/tvix/Cargo.lock generated
View file

@ -2262,8 +2262,6 @@ dependencies = [
"tokio-util", "tokio-util",
"tonic", "tonic",
"tonic-build", "tonic-build",
"tower",
"tower-http 0.5.2",
"tracing", "tracing",
"tracing-subscriber", "tracing-subscriber",
"tvix-castore", "tvix-castore",
@ -4352,23 +4350,6 @@ dependencies = [
"tracing", "tracing",
] ]
[[package]]
name = "tower-http"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
dependencies = [
"bitflags 2.4.2",
"bytes",
"http 1.1.0",
"http-body 1.0.0",
"http-body-util",
"pin-project-lite",
"tower-layer",
"tower-service",
"tracing",
]
[[package]] [[package]]
name = "tower-layer" name = "tower-layer"
version = "0.3.2" version = "0.3.2"
@ -4774,7 +4755,7 @@ dependencies = [
"tonic-build", "tonic-build",
"tonic-reflection", "tonic-reflection",
"tower", "tower",
"tower-http 0.4.4", "tower-http",
"tracing", "tracing",
"tracing-indicatif", "tracing-indicatif",
"tvix-castore", "tvix-castore",
@ -4787,7 +4768,6 @@ dependencies = [
name = "tvix-tracing" name = "tvix-tracing"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"axum 0.7.5",
"http 0.2.11", "http 0.2.11",
"indicatif", "indicatif",
"lazy_static", "lazy_static",

View file

@ -12,7 +12,8 @@ rustPlatform.buildRustPackage rec {
src = tvix-src; src = tvix-src;
sourceRoot = "${src.name}/tvix"; patches = [ ./01-remote-path-info-nar-bridge.patch ];
postPatch = "cd tvix";
doCheck = false; doCheck = false;