diff options
author | edef <edef@edef.eu> | 2023-10-27T10·53+0000 |
---|---|---|
committer | edef <edef@edef.eu> | 2023-10-27T12·18+0000 |
commit | 99a61def17edbd77795efd2fda9e557b2cfef571 (patch) | |
tree | d8b5309b160213d5bf4991dfe7fdcf61952bddc0 /tvix/nix-compat/src/store_path/utils.rs | |
parent | fdc2e90ef2e64224f4f778f2a26bbfeb02afde2b (diff) |
fix(tvix/nix-compat): don't box CAHash::Text r/6886
Change-Id: I31df3909bc21c9038f9fb831879e60e541242819 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9853 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/nix-compat/src/store_path/utils.rs')
-rw-r--r-- | tvix/nix-compat/src/store_path/utils.rs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tvix/nix-compat/src/store_path/utils.rs b/tvix/nix-compat/src/store_path/utils.rs index b625abdfd0b9..375882795c31 100644 --- a/tvix/nix-compat/src/store_path/utils.rs +++ b/tvix/nix-compat/src/store_path/utils.rs @@ -50,12 +50,7 @@ pub fn build_text_path<S: AsRef<str>, I: IntoIterator<Item = S>, C: AsRef<[u8]>> // produce the sha256 digest of the contents let content_digest = Sha256::new_with_prefix(content).finalize().into(); - build_ca_path( - name, - &CAHash::Text(Box::new(content_digest)), - references, - false, - ) + build_ca_path(name, &CAHash::Text(content_digest), references, false) } /// This builds a store path from a [CAHash] and a list of references. @@ -72,7 +67,7 @@ pub fn build_ca_path<B: AsRef<[u8]>, S: AsRef<str>, I: IntoIterator<Item = S>>( } build_store_path_from_fingerprint_parts( &make_references_string("text", references, false), - &NixHash::Sha256(*digest.to_owned()), + &NixHash::Sha256(*digest), name, ) .map_err(BuildStorePathError::InvalidStorePath) |