diff --git a/tvix/derivation/src/derivation.rs b/tvix/derivation/src/derivation.rs index d6a5dc76b..bed2cc74b 100644 --- a/tvix/derivation/src/derivation.rs +++ b/tvix/derivation/src/derivation.rs @@ -9,13 +9,13 @@ use tvix_store::nixpath::STORE_DIR; #[derive(Serialize, Deserialize)] pub struct Derivation { - outputs: BTreeMap, - input_sources: Vec, - input_derivations: BTreeMap>, - platform: String, - builder: String, - arguments: Vec, - environment: BTreeMap, + pub outputs: BTreeMap, + pub input_sources: Vec, + pub input_derivations: BTreeMap>, + pub platform: String, + pub builder: String, + pub arguments: Vec, + pub environment: BTreeMap, } impl Derivation {