diff options
author | Florian Klink <flokli@flokli.de> | 2023-05-18T18·49+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-05-18T19·29+0000 |
commit | dcbcac89559e128c70edbd39a6a5566386aee286 (patch) | |
tree | 4b31e8014d299e956a3a69a06da1eca5e3e337b4 /tvix/nix-compat/src/store_path/utils.rs | |
parent | 64ee21ec86b3b8b0d35256b823f0e6c9670a9acc (diff) |
refactor(tvix/nix-compat): clippy r/6161
Change-Id: Ie5277a5c15d9dfe543ca41fa7c6a1eedf22a9f64 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8593 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/nix-compat/src/store_path/utils.rs')
-rw-r--r-- | tvix/nix-compat/src/store_path/utils.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/nix-compat/src/store_path/utils.rs b/tvix/nix-compat/src/store_path/utils.rs index c5fc48a94ffe..fd3785568bac 100644 --- a/tvix/nix-compat/src/store_path/utils.rs +++ b/tvix/nix-compat/src/store_path/utils.rs @@ -122,7 +122,7 @@ pub fn build_output_path( build_store_path_from_fingerprint_parts( &(String::from("output:") + output_name), drv_hash, - &output_path_name, + output_path_name, ) } @@ -142,7 +142,7 @@ fn build_store_path_from_fingerprint_parts( let fingerprint = String::from(ty) + ":" + &hash.to_nix_hash_string() + ":" + STORE_DIR + ":" + name; let digest = { - let hasher = Sha256::new_with_prefix(&fingerprint); + let hasher = Sha256::new_with_prefix(fingerprint); hasher.finalize() }; let compressed = compress_hash::<20>(&digest); |