forked from yu-re-ka/binary-cache
fix(tvix): Add remote path info service back
This commit is contained in:
parent
b9f8a02e3b
commit
ca91cdb33b
|
@ -2,6 +2,6 @@
|
|||
fetchgit {
|
||||
name = "tvix";
|
||||
url = "https://cl.tvl.fyi/depot";
|
||||
rev = "refs/changes/25/11925/4";
|
||||
hash = "sha256-iTkHg7YJgusq7c27rhILMsxPKTLOcL3H/0y6xFkttok=";
|
||||
rev = "fdc0cf0c94827fc4940c9f8ac4d310d57aec9f35";
|
||||
hash = "sha256-KGRtHG0zBk+UJQFTztr/ZatS86VccjFlOK0BCcXWWeY=";
|
||||
}
|
||||
|
|
1263
pkgs/tvix/01-remote-path-info-nar-bridge.patch
Normal file
1263
pkgs/tvix/01-remote-path-info-nar-bridge.patch
Normal file
File diff suppressed because it is too large
Load diff
22
pkgs/tvix/Cargo.lock
generated
22
pkgs/tvix/Cargo.lock
generated
|
@ -2262,8 +2262,6 @@ dependencies = [
|
|||
"tokio-util",
|
||||
"tonic",
|
||||
"tonic-build",
|
||||
"tower",
|
||||
"tower-http 0.5.2",
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
"tvix-castore",
|
||||
|
@ -4352,23 +4350,6 @@ dependencies = [
|
|||
"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]]
|
||||
name = "tower-layer"
|
||||
version = "0.3.2"
|
||||
|
@ -4774,7 +4755,7 @@ dependencies = [
|
|||
"tonic-build",
|
||||
"tonic-reflection",
|
||||
"tower",
|
||||
"tower-http 0.4.4",
|
||||
"tower-http",
|
||||
"tracing",
|
||||
"tracing-indicatif",
|
||||
"tvix-castore",
|
||||
|
@ -4787,7 +4768,6 @@ dependencies = [
|
|||
name = "tvix-tracing"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"axum 0.7.5",
|
||||
"http 0.2.11",
|
||||
"indicatif",
|
||||
"lazy_static",
|
||||
|
|
|
@ -12,7 +12,8 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
src = tvix-src;
|
||||
|
||||
sourceRoot = "${src.name}/tvix";
|
||||
patches = [ ./01-remote-path-info-nar-bridge.patch ];
|
||||
postPatch = "cd tvix";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue