mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
17 lines
185 B
C++
17 lines
185 B
C++
|
#ifndef __USER_ENV_H
|
||
|
#define __USER_ENV_H
|
||
|
|
||
|
#include "get-drvs.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
DrvInfos queryInstalled(EvalState & state, const Path & userEnv);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* !__USER_ENV_H */
|
||
|
|
||
|
|
||
|
|
||
|
|