1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

nix-shell: allow symlinks to .drvs

This makes persistent shell environments easier to use.
This commit is contained in:
Linus Heckemann 2018-03-16 22:15:24 +00:00
parent 48662d151b
commit 12913ccf45
3 changed files with 19 additions and 3 deletions

View file

@ -271,10 +271,14 @@ void mainWrapped(int argc, char * * argv)
exprs = {state.parseStdin()};
else
for (auto i : left) {
auto absolute = i;
try {
absolute = canonPath(absPath(i), true);
} catch (Error e) {};
if (fromArgs)
exprs.push_back(state.parseExprFromString(i, absPath(".")));
else if (store->isStorePath(i) && std::regex_match(i, std::regex(".*\\.drv(!.*)?")))
drvs.push_back(DrvInfo(state, store, i));
else if (store->isStorePath(absolute) && std::regex_match(absolute, std::regex(".*\\.drv(!.*)?")))
drvs.push_back(DrvInfo(state, store, absolute));
else
/* If we're in a #! script, interpret filenames
relative to the script. */