diff options
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/store/src/store_path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/store_path.rs b/tvix/store/src/store_path.rs index 1719e071c80f..925a0b4ccff2 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, |