mirror of
https://github.com/NixOS/nix
synced 2025-06-28 13:41:15 +02:00
* Added parsing of manifests in ATerm format.
This commit is contained in:
parent
b7ff69eb7c
commit
55b5ddd3ca
3 changed files with 165 additions and 13 deletions
|
@ -29,6 +29,9 @@ struct DrvInfo
|
|||
private:
|
||||
string drvPath;
|
||||
string outPath;
|
||||
|
||||
bool metaInfoRead;
|
||||
MetaInfo meta;
|
||||
|
||||
public:
|
||||
string name;
|
||||
|
@ -38,6 +41,8 @@ public:
|
|||
/* !!! make this private */
|
||||
Bindings * attrs;
|
||||
|
||||
DrvInfo() : metaInfoRead(false) { };
|
||||
|
||||
string queryDrvPath(EvalState & state) const;
|
||||
string queryOutPath(EvalState & state) const;
|
||||
MetaInfo queryMetaInfo(EvalState & state) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue