about summary refs log blame commit diff
path: root/tvix/glue/src/builtins/derivation_error.rs
blob: 25471f0fdf48b7897238cd0fb439757bc6b6ed32 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                
                                                       

                     
 
                                             
                       
                
                                                                
                            
                                                                               
                           
                                                                                      
                            
                                                  
                                       

                                        
                                                                                          
                                  

 




                                                     
//! Contains [crate::builtins::DerivationError].
use nix_compat::{derivation::DerivationError, nixhash};
use std::rc::Rc;
use thiserror::Error;

/// Errors related to derivation construction
#[derive(Debug, Error)]
pub enum Error {
    #[error("an output with the name '{0}' is already defined")]
    DuplicateOutput(String),
    #[error("fixed-output derivations can only have the default `out`-output")]
    ConflictingOutputTypes,
    #[error("the environment variable '{0}' has already been set in this derivation")]
    DuplicateEnvVar(String),
    #[error("invalid derivation parameters: {0}")]
    InvalidDerivation(DerivationError),
    #[error("invalid output hash: {0}")]
    InvalidOutputHash(nixhash::Error),
    #[error("invalid output hash mode: '{0}', only 'recursive' and 'flat` are supported")]
    InvalidOutputHashMode(String),
}

impl From<Error> for tvix_eval::ErrorKind {
    fn from(err: Error) -> Self {
        tvix_eval::ErrorKind::TvixError(Rc::new(err))
    }
}