diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-30T11·27+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-30T14·03+0000 |
commit | 971080c9120725c0bec21ea2e5e14847b0e996e6 (patch) | |
tree | 42132ef1f2c39e25e87f416bede5df5985853e6e /tvix/nix-compat/src/lib.rs | |
parent | 14c5781389838f05f3f0063e8c7f04b1eeceaf2e (diff) |
refactor(tvix/nix-compat): add text_hash_string function r/6057
Use it to calculate the text_hash_string, which is then used in the calculate_derivation_path and path_with_references functions. Relates to b/263. Change-Id: I7478825e2a23a11224212fea5e3fd06daa97d5e5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8364 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
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 52b3ea65b99f..ec9ddd1ffa7b 100644 --- a/tvix/nix-compat/src/lib.rs +++ b/tvix/nix-compat/src/lib.rs @@ -7,6 +7,7 @@ pub mod nixhash; mod nixhash_algos; mod nixhash_with_mode; pub mod store_path; +mod texthash; /// Nix placeholders (i.e. values returned by `builtins.placeholder`) /// are used to populate outputs with paths that must be |