mirror of
https://github.com/NixOS/nix.git
synced 2025-11-10 12:36:01 +01:00
This will facilitate breaking up Nix into multiple packages for each component with Meson.
41 lines
567 B
C++
41 lines
567 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "logging.hh"
|
|
#include "serialise.hh"
|
|
#include "processes.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct HookInstance
|
|
{
|
|
/**
|
|
* Pipes for talking to the build hook.
|
|
*/
|
|
Pipe toHook;
|
|
|
|
/**
|
|
* Pipe for the hook's standard output/error.
|
|
*/
|
|
Pipe fromHook;
|
|
|
|
/**
|
|
* Pipe for the builder's standard output/error.
|
|
*/
|
|
Pipe builderOut;
|
|
|
|
/**
|
|
* The process ID of the hook.
|
|
*/
|
|
Pid pid;
|
|
|
|
FdSink sink;
|
|
|
|
std::map<ActivityId, Activity> activities;
|
|
|
|
HookInstance();
|
|
|
|
~HookInstance();
|
|
};
|
|
|
|
}
|