aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/installable-flake.cc
diff options
context:
space:
mode:
authorTom Bereknyei <tomberek@gmail.com>2023-08-19 17:03:31 -0400
committerlunaphied <lunaphied@lunaphied.me>2024-03-25 15:30:36 +0000
commit4494f9097f7959b2f7e63decf04a5bd592018836 (patch)
tree37db3dc35cb83ce9fb1f9794d63b31885a399174 /src/libcmd/installable-flake.cc
parentd3d7489571baeb651d3843dba3b638621694c174 (diff)
feat: notation to refer to no attribute search prefix
An attrPath prefix of "." indicates no need to try default attrPath prefixes. For example `nixpkgs#legacyPackages.x86_64-linux.ERROR` searches through ``` trying flake output attribute 'packages.x86_64-linux.legacyPackages.x86_64-linux.ERROR' using cached attrset attribute '' trying flake output attribute 'legacyPackages.x86_64-linux.legacyPackages.x86_64-linux.ERROR' using cached attrset attribute 'legacyPackages.x86_64-linux' trying flake output attribute 'legacyPackages.x86_64-linux.ERROR' using cached attrset attribute 'legacyPackages.x86_64-linux' ``` And there is no way to specify that one does not want the automatic search behavior. Now one can specify `nixpkgs#.legacyPackages.x86_64-linux.ERROR` to only refer to the rooted attribute path without any default injection of attribute search path or system. Change-Id: Iac1334e1470137b7ce11dcf845513810230638ec (cherry picked from commit d4aed18883b361133607296fb6cd789c47427a38)
Diffstat (limited to 'src/libcmd/installable-flake.cc')
-rw-r--r--src/libcmd/installable-flake.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcmd/installable-flake.cc b/src/libcmd/installable-flake.cc
index bb75b8ff0..615f70945 100644
--- a/src/libcmd/installable-flake.cc
+++ b/src/libcmd/installable-flake.cc
@@ -28,6 +28,10 @@ namespace nix {
std::vector<std::string> InstallableFlake::getActualAttrPaths()
{
std::vector<std::string> res;
+ if (attrPaths.size() == 1 && attrPaths.front().starts_with(".")){
+ res.push_back(attrPaths.front().substr(1));
+ return res;
+ }
for (auto & prefix : prefixes)
res.push_back(prefix + *attrPaths.begin());