feat(tvix/nix-compat): introduce ExportedPathInfo struct

This is another representation about information Nix has on a Store
Path. It's encountered in the exportReferencesGraph feature.

Change-Id: Ia0c08c369f4af9e50ebe3a5053bd98fadaa0003d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11396
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
This commit is contained in:
Florian Klink 2024-04-12 15:38:40 +03:00 committed by flokli
parent 329c4a1ace
commit 82cf89ee6e
2 changed files with 122 additions and 0 deletions

View file

@ -4,5 +4,6 @@ pub mod nar;
pub mod narinfo;
pub mod nixbase32;
pub mod nixhash;
pub mod path_info;
pub mod store_path;
pub mod wire;