diff options
Diffstat (limited to 'tvix/nix-compat')
-rw-r--r-- | tvix/nix-compat/src/derivation/errors.rs | 3 | ||||
-rw-r--r-- | tvix/nix-compat/src/derivation/validate.rs | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/tvix/nix-compat/src/derivation/errors.rs b/tvix/nix-compat/src/derivation/errors.rs index 0dcad9a5345e..80d1e6c6a4a9 100644 --- a/tvix/nix-compat/src/derivation/errors.rs +++ b/tvix/nix-compat/src/derivation/errors.rs @@ -42,7 +42,8 @@ pub enum DerivationError { InvalidEnvironmentKey(String), } -/// Errors that can occur during the validation of a specific [Output] of a [Derviation]. +/// Errors that can occur during the validation of a specific +// [crate::derivation::Output] of a [crate::derivation::Derviation]. #[derive(Debug, Error, PartialEq)] pub enum OutputError { #[error("Invalid ouput path {0}: {1}")] diff --git a/tvix/nix-compat/src/derivation/validate.rs b/tvix/nix-compat/src/derivation/validate.rs index 7456f930d15e..91b24f811de4 100644 --- a/tvix/nix-compat/src/derivation/validate.rs +++ b/tvix/nix-compat/src/derivation/validate.rs @@ -3,9 +3,11 @@ use crate::store_path::StorePath; impl Derivation { /// validate ensures a Derivation struct is properly populated, - /// and returns a [ValidateDerivationError] if not. + /// and returns a [DerivationError] if not. + /// /// if `validate_output_paths` is set to false, the output paths are /// excluded from validation. + /// /// This is helpful to validate struct population before invoking /// [Derivation::calculate_output_paths]. pub fn validate(&self, validate_output_paths: bool) -> Result<(), DerivationError> { |