diff options
author | Florian Klink <flokli@flokli.de> | 2024-04-12T12·38+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-04-13T10·03+0000 |
commit | 82cf89ee6e22ec206140aa6b64b7347bdb44d130 (patch) | |
tree | a1b7144892dafbf7b3e3d9f2db5dd471ca0e7d5b /tvix/nix-compat/src/lib.rs | |
parent | 329c4a1acedc589f2cd1289964e69ff7daad177d (diff) |
feat(tvix/nix-compat): introduce ExportedPathInfo struct r/7893
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>
Diffstat (limited to 'tvix/nix-compat/src/lib.rs')
-rw-r--r-- | tvix/nix-compat/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/nix-compat/src/lib.rs b/tvix/nix-compat/src/lib.rs index d2849cbeae79..2e90aaa0b76d 100644 --- a/tvix/nix-compat/src/lib.rs +++ b/tvix/nix-compat/src/lib.rs @@ -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; |