diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-07-25T16·40+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-07-25T16·40+0000 |
commit | 0e6dc72a7a4d29b7f1a1458670581a29d573e479 (patch) | |
tree | ffca22fee0bb815ffe814f057d53d7d10617eaa0 /src/libexpr/get-drvs.hh | |
parent | b11aeb2c4bce28dca0f0b266eff732ea80628aed (diff) |
* Applied rbroek's patch from the branch at
https://svn.cs.uu.nl:12443/repos/trace/buildfarm-control/trunk/ext/nix/, with some modifications. This allows `nix-env -qa' to show the attribute path that can be used to unambiguously install a package using `nix-env -i -A'. Example: $ nix-env -f top-level/all-packages.nix -qaA subversion xorg-server subversionWithJava subversion-1.2.3 subversion subversion-1.3.2 subversion14 subversion-1.4.0pre-rc1 xorg.xorgserver xorg-server-1.1.0
Diffstat (limited to 'src/libexpr/get-drvs.hh')
-rw-r--r-- | src/libexpr/get-drvs.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/get-drvs.hh b/src/libexpr/get-drvs.hh index 2b88111b2c84..4fb8f43feea9 100644 --- a/src/libexpr/get-drvs.hh +++ b/src/libexpr/get-drvs.hh @@ -20,6 +20,7 @@ private: public: string name; + string attrPath; /* path towards the derivation */ string system; shared_ptr<ATermMap> attrs; |