about summary refs log tree commit diff
path: root/src/nix-env/main.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-07-25T16·40+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-07-25T16·40+0000
commit0e6dc72a7a4d29b7f1a1458670581a29d573e479 (patch)
treeffca22fee0bb815ffe814f057d53d7d10617eaa0 /src/nix-env/main.cc
parentb11aeb2c4bce28dca0f0b266eff732ea80628aed (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/nix-env/main.cc')
-rw-r--r--src/nix-env/main.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc
index 633c85b618..875cdd7447 100644
--- a/src/nix-env/main.cc
+++ b/src/nix-env/main.cc
@@ -724,6 +724,7 @@ static void opQuery(Globals & globals,
 {
     bool printStatus = false;
     bool printName = true;
+    bool printAttrPath = false;
     bool printSystem = false;
     bool printDrvPath = false;
     bool printOutPath = false;
@@ -747,6 +748,8 @@ static void opQuery(Globals & globals,
         else if (*i == "--available" || *i == "-a") source = sAvailable;
         else throw UsageError(format("unknown flag `%1%'") % *i);
 
+    if (globals.instSource.type == srcAttrPath) printAttrPath = true; /* hack */
+
     if (opArgs.size() == 0) {
         printMsg(lvlInfo, "warning: you probably meant to specify the argument '*' to show all packages");
     }
@@ -809,6 +812,8 @@ static void opQuery(Globals & globals,
                     + (subs.size() > 0 ? "S" : "-"));
             }
 
+            if (printAttrPath) columns.push_back(i->attrPath);
+
             if (printName) columns.push_back(i->name);
 
             if (compareVersions) {