Nix 2.35.2
Nix, the purely functional package manager; unstable internal interfaces
Loading...
Searching...
No Matches
derivation-check.hh
Go to the documentation of this file.
1#pragma once
3
4#include "nix/store/derivations.hh"
5#include "nix/store/derivation-options.hh"
6#include "nix/store/path-info.hh"
7
8namespace nix {
9
15void checkCAFixedOutput(
16 StoreDirConfig & store, const StorePath & drvPath, const DerivationOutput & outputSpec, const ValidPathInfo & info);
17
28void checkOutputs(
29 Store & store,
30 const StorePath & drvPath,
31 const decltype(Derivation::outputs) & drvOutputs,
32 const decltype(DerivationOptions<StorePath>::outputChecks) & drvOptions,
33 const std::map<std::string, ValidPathInfo> & outputs);
34
35} // namespace nix