mirror of
https://github.com/NixOS/nix
synced 2025-06-27 08:31:16 +02:00
Implement buildDerivation() via the daemon
This commit is contained in:
parent
6e06a18d1b
commit
71a5161365
5 changed files with 34 additions and 2 deletions
|
@ -248,6 +248,13 @@ Source & operator >> (Source & in, string & s)
|
|||
}
|
||||
|
||||
|
||||
Source & operator >> (Source & in, unsigned int & n)
|
||||
{
|
||||
n = readInt(in);
|
||||
return in;
|
||||
}
|
||||
|
||||
|
||||
template<class T> T readStrings(Source & source)
|
||||
{
|
||||
unsigned int count = readInt(source);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue