query
On this page

derivation

builtins.derivation

Docs pulled from | This Revision | 21 minutes ago


Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.

Noogle detected

Detected Type
let 
    Derivation :: {
        all :: [ Derivation ];
        builder :: String;
        drvAttrs :: {
            builder = String; 
            name = String;
            outputs = [ output :: String ]; 
            system = String;
            ${additionalArgs} :: String;
        }
        drvPath :: String;
        name :: String;
        outPath :: String;
        outputName :: String;
        outputs :: [ output :: String ];
        system :: String;
        type :: "derivation";
        ${output} :: Derivation;
        ${additionalArgs} :: String;
    };
in
    builtins.derivation :: {
        name :: String;
        outputs :: [ output :: String ] ? [ "out" ];
        builder :: String;
        system :: String;
        ${additionalArgs} :: String;
    } -> Derivation