chore(snix): s/tvix/snix/

Change-Id: Iae961416eea0a38bc57df7b736f6dda5903b0828
This commit is contained in:
Florian Klink 2025-03-16 17:55:12 +00:00
parent 768f053416
commit 36e4d017f5
1417 changed files with 3741 additions and 3650 deletions

View file

@ -4073,7 +4073,7 @@ rec {
version = "0.1.0";
edition = "2021";
crateBin = [ ];
src = lib.cleanSourceWith { filter = sourceFilter; src = ../../../tvix/nix-compat; };
src = lib.cleanSourceWith { filter = sourceFilter; src = ../../../snix/nix-compat; };
libName = "nix_compat";
dependencies = [
{
@ -4196,7 +4196,7 @@ rec {
crateName = "nix-compat-derive";
version = "0.1.0";
edition = "2021";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../../../tvix/nix-compat-derive; };
src = lib.cleanSourceWith { filter = sourceFilter; src = ../../../snix/nix-compat-derive; };
procMacro = true;
libName = "nix_compat_derive";
dependencies = [

View file

@ -19,7 +19,7 @@ tokio = { version = "1.37.0", features = ["full"] }
rusoto_core = { version = "0.48.0", default-features = false, features = ["hyper-rustls"] }
rusoto_s3 = { version = "0.48.0", default-features = false, features = ["rustls"] }
nix-compat = { version = "0.1.0", path = "../../../tvix/nix-compat" }
nix-compat = { version = "0.1.0", path = "../../../snix/nix-compat" }
sled = "0.34.7"
fastcdc = "3.1.0"

View file

@ -1,9 +1,9 @@
{ pkgs, depot, lib, ... }:
(pkgs.callPackage ./Cargo.nix {
defaultCrateOverrides = (depot.tvix.utils.defaultCrateOverridesForPkgs pkgs) // {
defaultCrateOverrides = (depot.snix.utils.defaultCrateOverridesForPkgs pkgs) // {
crunch-v2 = prev: {
src = depot.tvix.utils.filterRustCrateSrc rec {
src = depot.snix.utils.filterRustCrateSrc rec {
root = prev.src.origSrc;
extraFileset = lib.fileset.fileFilter (f: f.hasExt "proto") root;
};
@ -11,5 +11,5 @@
};
};
}).rootCrate.build.overrideAttrs {
meta.ci.extraSteps.crate2nix-check = depot.tvix.utils.mkCrate2nixCheck ./Cargo.nix;
meta.ci.extraSteps.crate2nix-check = depot.snix.utils.mkCrate2nixCheck ./Cargo.nix;
}

View file

@ -1,6 +1,6 @@
syntax = "proto3";
package tvix.flatstore.v1;
package snix.flatstore.v1;
message Path {
bytes nar_hash = 1;

View file

@ -1,3 +1,3 @@
pub mod proto {
include!(concat!(env!("OUT_DIR"), "/tvix.flatstore.v1.rs"));
include!(concat!(env!("OUT_DIR"), "/snix.flatstore.v1.rs"));
}