1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

Merge remote-tracking branch 'me/enum-FileIngestionMethod' into HEAD

This commit is contained in:
John Ericson 2020-03-30 11:08:13 -04:00
commit f5494d9442
27 changed files with 105 additions and 87 deletions

View file

@ -87,6 +87,11 @@ const size_t storePathHashLen = 32; // i.e. 160 bits
/* Extension of derivations in the Nix store. */
const std::string drvExtension = ".drv";
enum struct FileIngestionMethod : bool {
Flat = false,
Recursive = true
};
struct StorePathWithOutputs
{
StorePath path;