diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-06-22 14:34:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 14:34:00 +0200 |
commit | 965b80347e97169f266466603e29a57359c4083c (patch) | |
tree | 8dfd5a8167d96481860a270ba8bfeda922906c47 /src/libstore/path.hh | |
parent | 984e521392b3f41f7cdab203e5c00f3e00e27a28 (diff) | |
parent | e288c0987a45247254fe0e501459db247ec8f72b (diff) |
Merge pull request #3649 from obsidiansystems/validPathInfo-ca-proper-datatype
ValidPathInfo: make ca field a proper datatype
Diffstat (limited to 'src/libstore/path.hh')
-rw-r--r-- | src/libstore/path.hh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libstore/path.hh b/src/libstore/path.hh index aaebd3ec3..4f79843fe 100644 --- a/src/libstore/path.hh +++ b/src/libstore/path.hh @@ -1,5 +1,6 @@ #pragma once +#include "content-address.hh" #include "types.hh" namespace nix { @@ -65,11 +66,6 @@ typedef std::vector<StorePath> StorePaths; /* Extension of derivations in the Nix store. */ const std::string drvExtension = ".drv"; -enum struct FileIngestionMethod : uint8_t { - Flat = false, - Recursive = true -}; - struct StorePathWithOutputs { StorePath path; |