forked from yu-re-ka/binary-cache
feat(tvix): Bump
This commit is contained in:
parent
939cfbf5e6
commit
ebab970fd8
|
@ -1,7 +1,7 @@
|
||||||
{ fetchgit }:
|
{ fetchgit }:
|
||||||
fetchgit {
|
fetchgit {
|
||||||
name = "tvix";
|
name = "tvix";
|
||||||
url = "https://cl.tvl.fyi/depot";
|
url = "https://git.dgnum.eu/mdebray/tvl-depot.git";
|
||||||
rev = "fdc0cf0c94827fc4940c9f8ac4d310d57aec9f35";
|
rev = "2f767d0ddaa513da11f491b3b6dead22f795776b";
|
||||||
hash = "sha256-KGRtHG0zBk+UJQFTztr/ZatS86VccjFlOK0BCcXWWeY=";
|
hash = "sha256-UYqyCc9uIckXMIp7iOzwy0COloM3o1FEwzo8ZALOw88=";
|
||||||
}
|
}
|
||||||
|
|
22
pkgs/tvix/Cargo.lock
generated
22
pkgs/tvix/Cargo.lock
generated
|
@ -2262,6 +2262,8 @@ 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",
|
||||||
|
@ -4350,6 +4352,23 @@ 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"
|
||||||
|
@ -4755,7 +4774,7 @@ dependencies = [
|
||||||
"tonic-build",
|
"tonic-build",
|
||||||
"tonic-reflection",
|
"tonic-reflection",
|
||||||
"tower",
|
"tower",
|
||||||
"tower-http",
|
"tower-http 0.4.4",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-indicatif",
|
"tracing-indicatif",
|
||||||
"tvix-castore",
|
"tvix-castore",
|
||||||
|
@ -4768,6 +4787,7 @@ 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",
|
||||||
|
|
|
@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
src = tvix-src;
|
src = tvix-src;
|
||||||
|
|
||||||
patches = [ ./01-remote-path-info-nar-bridge.patch ];
|
patches = [ ];
|
||||||
postPatch = "cd tvix";
|
postPatch = "cd tvix";
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
Loading…
Reference in a new issue