mirror of
https://github.com/NixOS/nix
synced 2025-07-04 23:51:47 +02:00
Merge remote-tracking branch 'upstream/master' into more-rust-ffi
This commit is contained in:
commit
ef71caba29
34 changed files with 921 additions and 163 deletions
|
@ -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 : uint8_t {
|
||||
Flat = false,
|
||||
Recursive = true
|
||||
};
|
||||
|
||||
struct StorePathWithOutputs
|
||||
{
|
||||
StorePath path;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue