about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/store/src/store_path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/store_path.rs b/tvix/store/src/store_path.rs
index 1719e071c8..925a0b4ccf 100644
--- a/tvix/store/src/store_path.rs
+++ b/tvix/store/src/store_path.rs
@@ -36,7 +36,7 @@ pub enum ParseStorePathError {
 /// The name is usually used to describe the pname and version of a package.
 /// Derivations paths can also be represented as store paths, they end
 /// with .drv.
-#[derive(Debug, PartialEq, Eq)]
+#[derive(Clone, Debug, PartialEq, Eq)]
 pub struct StorePath {
     pub digest: [u8; DIGEST_SIZE],
     pub name: String,