2022-03-26 12:32:38 +02:00
|
|
|
#include "globals.hh"
|
2019-10-14 15:40:16 +03:00
|
|
|
#include "installables.hh"
|
2022-02-19 15:26:34 +02:00
|
|
|
#include "util.hh"
|
2017-04-25 13:06:32 +03:00
|
|
|
#include "command.hh"
|
2016-02-09 22:34:24 +02:00
|
|
|
#include "attr-path.hh"
|
2017-10-24 13:45:11 +03:00
|
|
|
#include "common-eval-args.hh"
|
2016-02-09 22:34:24 +02:00
|
|
|
#include "derivations.hh"
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "get-drvs.hh"
|
|
|
|
#include "store-api.hh"
|
2017-04-25 12:20:37 +03:00
|
|
|
#include "shared.hh"
|
2019-06-05 17:51:54 +03:00
|
|
|
#include "flake/flake.hh"
|
2020-04-20 14:14:59 +03:00
|
|
|
#include "eval-cache.hh"
|
2020-03-30 15:03:28 +03:00
|
|
|
#include "url.hh"
|
2020-05-11 22:49:02 +03:00
|
|
|
#include "registry.hh"
|
2022-03-08 20:50:46 +02:00
|
|
|
#include "build-result.hh"
|
2017-04-25 12:20:37 +03:00
|
|
|
|
|
|
|
#include <regex>
|
2019-05-24 00:42:13 +03:00
|
|
|
#include <queue>
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2020-10-23 07:59:01 +03:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2016-02-09 22:34:24 +02:00
|
|
|
namespace nix {
|
|
|
|
|
2020-06-08 17:20:00 +03:00
|
|
|
void completeFlakeInputPath(
|
|
|
|
ref<EvalState> evalState,
|
|
|
|
const FlakeRef & flakeRef,
|
|
|
|
std::string_view prefix)
|
|
|
|
{
|
|
|
|
auto flake = flake::getFlake(*evalState, flakeRef, true);
|
|
|
|
for (auto & input : flake.inputs)
|
|
|
|
if (hasPrefix(input.first, prefix))
|
2020-10-09 10:39:51 +03:00
|
|
|
completions->add(input.first);
|
2020-06-08 17:20:00 +03:00
|
|
|
}
|
|
|
|
|
2019-05-22 14:46:07 +03:00
|
|
|
MixFlakeOptions::MixFlakeOptions()
|
2017-10-24 13:45:11 +03:00
|
|
|
{
|
2021-01-25 20:03:13 +02:00
|
|
|
auto category = "Common flake-related options";
|
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "recreate-lock-file",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Recreate the flake's lock file from scratch.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2020-05-05 19:59:33 +03:00
|
|
|
.handler = {&lockFlags.recreateLockFile, true}
|
|
|
|
});
|
2019-05-14 12:34:45 +03:00
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-update-lock-file",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Do not allow any updates to the flake's lock file.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2020-05-05 19:59:33 +03:00
|
|
|
.handler = {&lockFlags.updateLockFile, false}
|
|
|
|
});
|
2020-01-29 22:01:34 +02:00
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-write-lock-file",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Do not write the flake's newly generated lock file.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2020-05-05 19:59:33 +03:00
|
|
|
.handler = {&lockFlags.writeLockFile, false}
|
|
|
|
});
|
2019-05-14 12:34:45 +03:00
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-registries",
|
2021-07-21 15:27:37 +03:00
|
|
|
.description =
|
|
|
|
"Don't allow lookups in the flake registries. This option is deprecated; use `--no-use-registries`.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2021-07-02 15:36:14 +03:00
|
|
|
.handler = {[&]() {
|
|
|
|
lockFlags.useRegistries = false;
|
2021-07-21 15:27:37 +03:00
|
|
|
warn("'--no-registries' is deprecated; use '--no-use-registries'");
|
2021-07-02 15:36:14 +03:00
|
|
|
}}
|
2020-05-05 19:59:33 +03:00
|
|
|
});
|
2020-01-29 15:57:57 +02:00
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "commit-lock-file",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Commit changes to the flake's lock file.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2020-05-05 19:59:33 +03:00
|
|
|
.handler = {&lockFlags.commitLockFile, true}
|
|
|
|
});
|
2020-02-05 15:48:49 +02:00
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "update-input",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Update a specific flake input (ignoring its previous entry in the lock file).",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2020-05-05 19:59:33 +03:00
|
|
|
.labels = {"input-path"},
|
|
|
|
.handler = {[&](std::string s) {
|
|
|
|
lockFlags.inputUpdates.insert(flake::parseInputPath(s));
|
2020-06-08 17:20:00 +03:00
|
|
|
}},
|
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
if (auto flakeRef = getFlakeRefForCompletion())
|
|
|
|
completeFlakeInputPath(getEvalState(), *flakeRef, prefix);
|
2020-05-05 19:59:33 +03:00
|
|
|
}}
|
|
|
|
});
|
2020-01-30 00:12:58 +02:00
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "override-input",
|
2021-03-16 17:53:39 +02:00
|
|
|
.description = "Override a specific flake input (e.g. `dwarffs/nixpkgs`). This implies `--no-write-lock-file`.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2020-05-05 19:59:33 +03:00
|
|
|
.labels = {"input-path", "flake-url"},
|
|
|
|
.handler = {[&](std::string inputPath, std::string flakeRef) {
|
2021-03-16 17:53:39 +02:00
|
|
|
lockFlags.writeLockFile = false;
|
2020-01-29 15:57:57 +02:00
|
|
|
lockFlags.inputOverrides.insert_or_assign(
|
2020-05-05 19:59:33 +03:00
|
|
|
flake::parseInputPath(inputPath),
|
2022-02-04 04:51:47 +02:00
|
|
|
parseFlakeRef(flakeRef, absPath("."), true));
|
2022-02-19 19:36:02 +02:00
|
|
|
}},
|
|
|
|
.completer = {[&](size_t n, std::string_view prefix) {
|
|
|
|
if (n == 0) {
|
|
|
|
if (auto flakeRef = getFlakeRefForCompletion())
|
|
|
|
completeFlakeInputPath(getEvalState(), *flakeRef, prefix);
|
|
|
|
} else if (n == 1) {
|
|
|
|
completeFlakeRef(getEvalState()->store, prefix);
|
|
|
|
}
|
2020-05-05 19:59:33 +03:00
|
|
|
}}
|
|
|
|
});
|
2020-07-01 21:23:39 +03:00
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "inputs-from",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Use the inputs of the specified flake as registry entries.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = category,
|
2020-07-01 21:23:39 +03:00
|
|
|
.labels = {"flake-url"},
|
|
|
|
.handler = {[&](std::string flakeRef) {
|
|
|
|
auto evalState = getEvalState();
|
|
|
|
auto flake = flake::lockFlake(
|
|
|
|
*evalState,
|
|
|
|
parseFlakeRef(flakeRef, absPath(".")),
|
|
|
|
{ .writeLockFile = false });
|
|
|
|
for (auto & [inputName, input] : flake.lockFile.root->inputs) {
|
|
|
|
auto input2 = flake.lockFile.findInput({inputName}); // resolve 'follows' nodes
|
|
|
|
if (auto input3 = std::dynamic_pointer_cast<const flake::LockedNode>(input2)) {
|
|
|
|
overrideRegistry(
|
|
|
|
fetchers::Input::fromAttrs({{"type","indirect"}, {"id", inputName}}),
|
|
|
|
input3->lockedRef.input,
|
|
|
|
{});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}},
|
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
completeFlakeRef(getEvalState()->store, prefix);
|
|
|
|
}}
|
|
|
|
});
|
2019-05-22 14:46:07 +03:00
|
|
|
}
|
|
|
|
|
2022-03-26 12:32:38 +02:00
|
|
|
SourceExprCommand::SourceExprCommand(bool supportReadOnlyMode)
|
2019-05-22 14:46:07 +03:00
|
|
|
{
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "file",
|
|
|
|
.shortName = 'f',
|
2022-03-16 20:48:50 +02:00
|
|
|
.description =
|
|
|
|
"Interpret installables as attribute paths relative to the Nix expression stored in *file*. "
|
|
|
|
"If *file* is the character -, then a Nix expression will be read from standard input.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = installablesCategory,
|
2020-05-04 23:40:19 +03:00
|
|
|
.labels = {"file"},
|
2020-05-10 22:35:07 +03:00
|
|
|
.handler = {&file},
|
|
|
|
.completer = completePath
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
2019-11-27 01:05:30 +02:00
|
|
|
|
2020-05-05 19:59:33 +03:00
|
|
|
addFlag({
|
2021-01-13 15:18:04 +02:00
|
|
|
.longName = "expr",
|
|
|
|
.description = "Interpret installables as attribute paths relative to the Nix expression *expr*.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = installablesCategory,
|
2020-05-05 19:59:33 +03:00
|
|
|
.labels = {"expr"},
|
|
|
|
.handler = {&expr}
|
|
|
|
});
|
2020-07-15 21:22:52 +03:00
|
|
|
|
|
|
|
addFlag({
|
2021-01-13 15:18:04 +02:00
|
|
|
.longName = "derivation",
|
|
|
|
.description = "Operate on the store derivation rather than its outputs.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = installablesCategory,
|
2020-07-15 21:22:52 +03:00
|
|
|
.handler = {&operateOn, OperateOn::Derivation},
|
|
|
|
});
|
2022-03-26 12:32:38 +02:00
|
|
|
|
|
|
|
if (supportReadOnlyMode) {
|
|
|
|
addFlag({
|
|
|
|
.longName = "read-only",
|
|
|
|
.description =
|
|
|
|
"Do not instantiate each evaluated derivation. "
|
|
|
|
"This improves performance, but can cause errors when accessing "
|
|
|
|
"store paths of derivations during evaluation.",
|
|
|
|
.handler = {&readOnlyMode, true},
|
|
|
|
});
|
|
|
|
}
|
2017-10-24 13:45:11 +03:00
|
|
|
}
|
|
|
|
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 18:52:10 +03:00
|
|
|
Strings SourceExprCommand::getDefaultFlakeAttrPaths()
|
|
|
|
{
|
2022-02-11 19:11:08 +02:00
|
|
|
return {
|
|
|
|
"packages." + settings.thisSystem.get() + ".default",
|
|
|
|
"defaultPackage." + settings.thisSystem.get()
|
|
|
|
};
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 18:52:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Strings SourceExprCommand::getDefaultFlakeAttrPathPrefixes()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
// As a convenience, look for the attribute in
|
|
|
|
// 'outputs.packages'.
|
|
|
|
"packages." + settings.thisSystem.get() + ".",
|
|
|
|
// As a temporary hack until Nixpkgs is properly converted
|
|
|
|
// to provide a clean 'packages' set, look in 'legacyPackages'.
|
|
|
|
"legacyPackages." + settings.thisSystem.get() + "."
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-11 22:49:02 +03:00
|
|
|
void SourceExprCommand::completeInstallable(std::string_view prefix)
|
|
|
|
{
|
2021-07-03 15:19:10 +03:00
|
|
|
if (file) {
|
2022-02-19 19:51:18 +02:00
|
|
|
completionType = ctAttrs;
|
|
|
|
|
2021-07-03 15:19:10 +03:00
|
|
|
evalSettings.pureEval = false;
|
|
|
|
auto state = getEvalState();
|
|
|
|
Expr *e = state->parseExprFromFile(
|
|
|
|
resolveExprPath(state->checkSourcePath(lookupFileArg(*state, *file)))
|
|
|
|
);
|
|
|
|
|
|
|
|
Value root;
|
|
|
|
state->eval(e, root);
|
|
|
|
|
|
|
|
auto autoArgs = getAutoArgs(*state);
|
|
|
|
|
|
|
|
std::string prefix_ = std::string(prefix);
|
|
|
|
auto sep = prefix_.rfind('.');
|
2021-07-05 22:37:33 +03:00
|
|
|
std::string searchWord;
|
2021-07-03 15:19:10 +03:00
|
|
|
if (sep != std::string::npos) {
|
2021-12-22 17:37:58 +02:00
|
|
|
searchWord = prefix_.substr(sep + 1, std::string::npos);
|
2021-07-05 22:37:33 +03:00
|
|
|
prefix_ = prefix_.substr(0, sep);
|
2021-07-03 15:19:10 +03:00
|
|
|
} else {
|
2021-07-05 22:37:33 +03:00
|
|
|
searchWord = prefix_;
|
2021-07-03 15:19:10 +03:00
|
|
|
prefix_ = "";
|
|
|
|
}
|
|
|
|
|
2021-11-27 19:40:24 +02:00
|
|
|
auto [v, pos] = findAlongAttrPath(*state, prefix_, *autoArgs, root);
|
|
|
|
Value &v1(*v);
|
|
|
|
state->forceValue(v1, pos);
|
2021-07-03 15:19:10 +03:00
|
|
|
Value v2;
|
|
|
|
state->autoCallFunction(*autoArgs, v1, v2);
|
|
|
|
|
|
|
|
if (v2.type() == nAttrs) {
|
|
|
|
for (auto & i : *v2.attrs) {
|
2022-03-05 15:40:24 +02:00
|
|
|
std::string name = state->symbols[i.name];
|
2021-07-05 22:37:33 +03:00
|
|
|
if (name.find(searchWord) == 0) {
|
2022-02-19 19:51:18 +02:00
|
|
|
if (prefix_ == "")
|
|
|
|
completions->add(name);
|
|
|
|
else
|
|
|
|
completions->add(prefix_ + "." + name);
|
2021-07-05 22:37:33 +03:00
|
|
|
}
|
2021-07-03 15:19:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
completeFlakeRefWithFragment(
|
|
|
|
getEvalState(),
|
|
|
|
lockFlags,
|
|
|
|
getDefaultFlakeAttrPathPrefixes(),
|
|
|
|
getDefaultFlakeAttrPaths(),
|
|
|
|
prefix);
|
|
|
|
}
|
2020-06-05 15:09:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void completeFlakeRefWithFragment(
|
|
|
|
ref<EvalState> evalState,
|
|
|
|
flake::LockFlags lockFlags,
|
|
|
|
Strings attrPathPrefixes,
|
|
|
|
const Strings & defaultFlakeAttrPaths,
|
|
|
|
std::string_view prefix)
|
|
|
|
{
|
2020-05-11 22:49:02 +03:00
|
|
|
/* Look for flake output attributes that match the
|
|
|
|
prefix. */
|
|
|
|
try {
|
|
|
|
auto hash = prefix.find('#');
|
2021-12-22 13:37:59 +02:00
|
|
|
if (hash == std::string::npos) {
|
|
|
|
completeFlakeRef(evalState->store, prefix);
|
|
|
|
} else {
|
2022-02-19 19:51:18 +02:00
|
|
|
completionType = ctAttrs;
|
|
|
|
|
2020-05-11 22:49:02 +03:00
|
|
|
auto fragment = prefix.substr(hash + 1);
|
|
|
|
auto flakeRefS = std::string(prefix.substr(0, hash));
|
2022-02-19 15:26:34 +02:00
|
|
|
auto flakeRef = parseFlakeRef(expandTilde(flakeRefS), absPath("."));
|
2020-05-11 22:49:02 +03:00
|
|
|
|
2020-06-05 15:09:12 +03:00
|
|
|
auto evalCache = openEvalCache(*evalState,
|
2020-08-07 15:13:24 +03:00
|
|
|
std::make_shared<flake::LockedFlake>(lockFlake(*evalState, flakeRef, lockFlags)));
|
2020-05-11 22:49:02 +03:00
|
|
|
|
|
|
|
auto root = evalCache->getRoot();
|
|
|
|
|
|
|
|
/* Complete 'fragment' relative to all the
|
|
|
|
attrpath prefixes as well as the root of the
|
|
|
|
flake. */
|
|
|
|
attrPathPrefixes.push_back("");
|
|
|
|
|
|
|
|
for (auto & attrPathPrefixS : attrPathPrefixes) {
|
2020-06-05 15:09:12 +03:00
|
|
|
auto attrPathPrefix = parseAttrPath(*evalState, attrPathPrefixS);
|
2020-05-11 22:49:02 +03:00
|
|
|
auto attrPathS = attrPathPrefixS + std::string(fragment);
|
2020-06-05 15:09:12 +03:00
|
|
|
auto attrPath = parseAttrPath(*evalState, attrPathS);
|
2020-05-11 22:49:02 +03:00
|
|
|
|
|
|
|
std::string lastAttr;
|
|
|
|
if (!attrPath.empty() && !hasSuffix(attrPathS, ".")) {
|
2022-04-22 22:45:39 +03:00
|
|
|
lastAttr = evalState->symbols[attrPath.back()];
|
2020-05-11 22:49:02 +03:00
|
|
|
attrPath.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto attr = root->findAlongAttrPath(attrPath);
|
|
|
|
if (!attr) continue;
|
|
|
|
|
2022-03-04 10:44:00 +02:00
|
|
|
for (auto & attr2 : (*attr)->getAttrs()) {
|
2022-04-22 22:45:39 +03:00
|
|
|
if (hasPrefix(evalState->symbols[attr2], lastAttr)) {
|
2022-03-04 10:44:00 +02:00
|
|
|
auto attrPath2 = (*attr)->getAttrPath(attr2);
|
2020-05-11 22:49:02 +03:00
|
|
|
/* Strip the attrpath prefix. */
|
|
|
|
attrPath2.erase(attrPath2.begin(), attrPath2.begin() + attrPathPrefix.size());
|
2022-04-22 22:45:39 +03:00
|
|
|
completions->add(flakeRefS + "#" + concatStringsSep(".", evalState->symbols.resolve(attrPath2)));
|
2020-05-11 22:49:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And add an empty completion for the default
|
|
|
|
attrpaths. */
|
|
|
|
if (fragment.empty()) {
|
2020-06-05 15:09:12 +03:00
|
|
|
for (auto & attrPath : defaultFlakeAttrPaths) {
|
|
|
|
auto attr = root->findAlongAttrPath(parseAttrPath(*evalState, attrPath));
|
2020-05-11 22:49:02 +03:00
|
|
|
if (!attr) continue;
|
2020-10-09 10:39:51 +03:00
|
|
|
completions->add(flakeRefS + "#");
|
2020-05-11 22:49:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Error & e) {
|
|
|
|
warn(e.msg());
|
|
|
|
}
|
2020-05-11 23:10:33 +03:00
|
|
|
}
|
|
|
|
|
2020-06-05 15:09:12 +03:00
|
|
|
void completeFlakeRef(ref<Store> store, std::string_view prefix)
|
2020-05-11 23:10:33 +03:00
|
|
|
{
|
2021-11-26 17:56:25 +02:00
|
|
|
if (!settings.isExperimentalFeatureEnabled(Xp::Flakes))
|
|
|
|
return;
|
|
|
|
|
2020-05-11 23:10:33 +03:00
|
|
|
if (prefix == "")
|
2020-10-09 10:39:51 +03:00
|
|
|
completions->add(".");
|
2020-05-11 23:10:33 +03:00
|
|
|
|
|
|
|
completeDir(0, prefix);
|
|
|
|
|
2020-05-11 22:49:02 +03:00
|
|
|
/* Look for registry entries that match the prefix. */
|
2020-06-05 15:09:12 +03:00
|
|
|
for (auto & registry : fetchers::getRegistries(store)) {
|
2020-05-11 22:49:02 +03:00
|
|
|
for (auto & entry : registry->entries) {
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
auto from = entry.from.to_string();
|
2020-05-11 22:49:02 +03:00
|
|
|
if (!hasPrefix(prefix, "flake:") && hasPrefix(from, "flake:")) {
|
|
|
|
std::string from2(from, 6);
|
|
|
|
if (hasPrefix(from2, prefix))
|
2020-10-09 10:39:51 +03:00
|
|
|
completions->add(from2);
|
2020-05-11 22:49:02 +03:00
|
|
|
} else {
|
|
|
|
if (hasPrefix(from, prefix))
|
2020-10-09 10:39:51 +03:00
|
|
|
completions->add(from);
|
2020-05-11 22:49:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-17 09:45:08 +03:00
|
|
|
DerivedPath Installable::toDerivedPath()
|
2017-09-06 17:03:22 +03:00
|
|
|
{
|
2021-05-17 09:45:08 +03:00
|
|
|
auto buildables = toDerivedPaths();
|
2017-09-06 17:03:22 +03:00
|
|
|
if (buildables.size() != 1)
|
|
|
|
throw Error("installable '%s' evaluates to %d derivations, where only one is expected", what(), buildables.size());
|
|
|
|
return std::move(buildables[0]);
|
|
|
|
}
|
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
std::vector<ref<eval_cache::AttrCursor>>
|
2020-08-07 15:13:24 +03:00
|
|
|
Installable::getCursors(EvalState & state)
|
2020-04-20 16:27:09 +03:00
|
|
|
{
|
|
|
|
auto evalCache =
|
2020-07-16 17:58:53 +03:00
|
|
|
std::make_shared<nix::eval_cache::EvalCache>(std::nullopt, state,
|
2020-04-20 16:27:09 +03:00
|
|
|
[&]() { return toValue(state).first; });
|
2022-04-14 15:04:19 +03:00
|
|
|
return {evalCache->getRoot()};
|
2020-04-20 16:27:09 +03:00
|
|
|
}
|
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
ref<eval_cache::AttrCursor>
|
2020-08-07 15:13:24 +03:00
|
|
|
Installable::getCursor(EvalState & state)
|
2020-06-04 21:02:50 +03:00
|
|
|
{
|
2020-08-07 15:13:24 +03:00
|
|
|
auto cursors = getCursors(state);
|
2020-06-04 21:02:50 +03:00
|
|
|
if (cursors.empty())
|
|
|
|
throw Error("cannot find flake attribute '%s'", what());
|
|
|
|
return cursors[0];
|
|
|
|
}
|
|
|
|
|
2022-01-18 18:28:18 +02:00
|
|
|
static StorePath getDeriver(
|
|
|
|
ref<Store> store,
|
|
|
|
const Installable & i,
|
|
|
|
const StorePath & drvPath)
|
|
|
|
{
|
|
|
|
auto derivers = store->queryValidDerivers(drvPath);
|
|
|
|
if (derivers.empty())
|
|
|
|
throw Error("'%s' does not have a known deriver", i.what());
|
|
|
|
// FIXME: use all derivers?
|
|
|
|
return *derivers.begin();
|
|
|
|
}
|
|
|
|
|
2017-04-25 12:20:37 +03:00
|
|
|
struct InstallableStorePath : Installable
|
2016-02-09 22:34:24 +02:00
|
|
|
{
|
2019-12-05 20:11:09 +02:00
|
|
|
ref<Store> store;
|
|
|
|
StorePath storePath;
|
2017-04-25 12:20:37 +03:00
|
|
|
|
2020-07-13 17:19:37 +03:00
|
|
|
InstallableStorePath(ref<Store> store, StorePath && storePath)
|
|
|
|
: store(store), storePath(std::move(storePath)) { }
|
2017-04-25 12:20:37 +03:00
|
|
|
|
2022-01-18 18:28:18 +02:00
|
|
|
std::string what() const override { return store->printStorePath(storePath); }
|
2017-04-25 12:20:37 +03:00
|
|
|
|
2021-05-17 09:45:08 +03:00
|
|
|
DerivedPaths toDerivedPaths() override
|
2017-04-25 12:20:37 +03:00
|
|
|
{
|
2020-07-15 20:50:32 +03:00
|
|
|
if (storePath.isDerivation()) {
|
2020-07-16 20:32:28 +03:00
|
|
|
auto drv = store->readDerivation(storePath);
|
2020-07-15 20:50:32 +03:00
|
|
|
return {
|
2021-05-17 09:45:08 +03:00
|
|
|
DerivedPath::Built {
|
2020-07-15 20:50:32 +03:00
|
|
|
.drvPath = storePath,
|
2021-05-17 09:45:08 +03:00
|
|
|
.outputs = drv.outputNames(),
|
2020-07-15 20:50:32 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {
|
2021-05-17 09:45:08 +03:00
|
|
|
DerivedPath::Opaque {
|
2020-07-23 22:02:57 +03:00
|
|
|
.path = storePath,
|
2020-07-15 20:50:32 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2017-04-25 12:20:37 +03:00
|
|
|
}
|
2019-07-12 17:28:39 +03:00
|
|
|
|
2022-01-18 18:28:18 +02:00
|
|
|
StorePathSet toDrvPaths(ref<Store> store) override
|
|
|
|
{
|
|
|
|
if (storePath.isDerivation()) {
|
|
|
|
return {storePath};
|
|
|
|
} else {
|
|
|
|
return {getDeriver(store, *this, storePath)};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-11 15:53:30 +02:00
|
|
|
std::optional<StorePath> getStorePath() override
|
2019-07-12 17:28:39 +03:00
|
|
|
{
|
2020-06-16 23:20:18 +03:00
|
|
|
return storePath;
|
2019-07-12 17:28:39 +03:00
|
|
|
}
|
2017-04-25 12:20:37 +03:00
|
|
|
};
|
|
|
|
|
2021-05-17 09:45:08 +03:00
|
|
|
DerivedPaths InstallableValue::toDerivedPaths()
|
2019-10-14 15:40:16 +03:00
|
|
|
{
|
2021-05-17 09:45:08 +03:00
|
|
|
DerivedPaths res;
|
2017-09-06 17:03:22 +03:00
|
|
|
|
2021-05-17 09:45:08 +03:00
|
|
|
std::map<StorePath, std::set<std::string>> drvsToOutputs;
|
2021-06-29 22:17:48 +03:00
|
|
|
RealisedPath::Set drvsToCopy;
|
2017-09-06 17:03:22 +03:00
|
|
|
|
2020-07-23 22:02:57 +03:00
|
|
|
// Group by derivation, helps with .all in particular
|
2019-10-14 15:40:16 +03:00
|
|
|
for (auto & drv : toDerivations()) {
|
2022-04-20 17:39:47 +03:00
|
|
|
for (auto & outputName : drv.outputsToInstall)
|
|
|
|
drvsToOutputs[drv.drvPath].insert(outputName);
|
2021-06-29 22:17:48 +03:00
|
|
|
drvsToCopy.insert(drv.drvPath);
|
2017-04-25 12:20:37 +03:00
|
|
|
}
|
2019-10-14 15:40:16 +03:00
|
|
|
|
2020-07-23 22:02:57 +03:00
|
|
|
for (auto & i : drvsToOutputs)
|
2021-05-17 09:45:08 +03:00
|
|
|
res.push_back(DerivedPath::Built { i.first, i.second });
|
2020-07-23 22:02:57 +03:00
|
|
|
|
|
|
|
return res;
|
2019-10-14 15:40:16 +03:00
|
|
|
}
|
2017-08-29 17:18:00 +03:00
|
|
|
|
2022-01-18 18:28:18 +02:00
|
|
|
StorePathSet InstallableValue::toDrvPaths(ref<Store> store)
|
|
|
|
{
|
|
|
|
StorePathSet res;
|
|
|
|
for (auto & drv : toDerivations())
|
|
|
|
res.insert(drv.drvPath);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
struct InstallableAttrPath : InstallableValue
|
2017-04-25 12:20:37 +03:00
|
|
|
{
|
2020-05-09 18:35:33 +03:00
|
|
|
SourceExprCommand & cmd;
|
2020-04-16 17:54:34 +03:00
|
|
|
RootValue v;
|
2017-04-25 12:20:37 +03:00
|
|
|
std::string attrPath;
|
2022-04-22 16:17:01 +03:00
|
|
|
OutputsSpec outputsSpec;
|
|
|
|
|
|
|
|
InstallableAttrPath(
|
|
|
|
ref<EvalState> state,
|
|
|
|
SourceExprCommand & cmd,
|
|
|
|
Value * v,
|
|
|
|
const std::string & attrPath,
|
|
|
|
OutputsSpec outputsSpec)
|
|
|
|
: InstallableValue(state)
|
|
|
|
, cmd(cmd)
|
|
|
|
, v(allocRootValue(v))
|
|
|
|
, attrPath(attrPath)
|
|
|
|
, outputsSpec(std::move(outputsSpec))
|
2017-04-25 12:20:37 +03:00
|
|
|
{ }
|
|
|
|
|
2022-01-18 18:28:18 +02:00
|
|
|
std::string what() const override { return attrPath; }
|
2017-04-25 12:20:37 +03:00
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
std::pair<Value *, PosIdx> toValue(EvalState & state) override
|
2017-04-25 12:20:37 +03:00
|
|
|
{
|
2020-04-16 17:54:34 +03:00
|
|
|
auto [vRes, pos] = findAlongAttrPath(state, attrPath, *cmd.getAutoArgs(state), **v);
|
2021-11-27 19:40:24 +02:00
|
|
|
state.forceValue(*vRes, pos);
|
2020-02-07 15:22:01 +02:00
|
|
|
return {vRes, pos};
|
2017-04-25 12:20:37 +03:00
|
|
|
}
|
2020-05-09 18:35:33 +03:00
|
|
|
|
|
|
|
virtual std::vector<InstallableValue::DerivationInfo> toDerivations() override;
|
2017-04-25 12:20:37 +03:00
|
|
|
};
|
|
|
|
|
2020-05-09 23:07:18 +03:00
|
|
|
std::vector<InstallableValue::DerivationInfo> InstallableAttrPath::toDerivations()
|
|
|
|
{
|
|
|
|
auto v = toValue(*state).first;
|
|
|
|
|
|
|
|
Bindings & autoArgs = *cmd.getAutoArgs(*state);
|
|
|
|
|
|
|
|
DrvInfos drvInfos;
|
|
|
|
getDerivations(*state, *v, "", autoArgs, drvInfos, false);
|
|
|
|
|
|
|
|
std::vector<DerivationInfo> res;
|
|
|
|
for (auto & drvInfo : drvInfos) {
|
2022-03-02 11:57:19 +02:00
|
|
|
auto drvPath = drvInfo.queryDrvPath();
|
|
|
|
if (!drvPath)
|
|
|
|
throw Error("'%s' is not a derivation", what());
|
2022-04-22 16:17:01 +03:00
|
|
|
|
2022-04-20 17:39:47 +03:00
|
|
|
std::set<std::string> outputsToInstall;
|
2022-04-22 16:17:01 +03:00
|
|
|
|
|
|
|
if (auto outputNames = std::get_if<OutputNames>(&outputsSpec))
|
|
|
|
outputsToInstall = *outputNames;
|
|
|
|
else
|
|
|
|
for (auto & output : drvInfo.queryOutputs(false, std::get_if<DefaultOutputs>(&outputsSpec)))
|
|
|
|
outputsToInstall.insert(output.first);
|
|
|
|
|
2022-04-20 17:39:47 +03:00
|
|
|
res.push_back(DerivationInfo {
|
|
|
|
.drvPath = *drvPath,
|
|
|
|
.outputsToInstall = std::move(outputsToInstall)
|
|
|
|
});
|
2020-05-09 23:07:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
std::vector<std::string> InstallableFlake::getActualAttrPaths()
|
2019-04-08 15:21:13 +03:00
|
|
|
{
|
2019-10-14 15:40:16 +03:00
|
|
|
std::vector<std::string> res;
|
2019-05-01 12:38:48 +03:00
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
for (auto & prefix : prefixes)
|
|
|
|
res.push_back(prefix + *attrPaths.begin());
|
2019-06-07 23:25:48 +03:00
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
for (auto & s : attrPaths)
|
|
|
|
res.push_back(s);
|
2019-06-07 23:25:48 +03:00
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
return res;
|
|
|
|
}
|
2019-06-07 23:25:48 +03:00
|
|
|
|
2020-01-22 21:59:59 +02:00
|
|
|
Value * InstallableFlake::getFlakeOutputs(EvalState & state, const flake::LockedFlake & lockedFlake)
|
2019-10-14 15:40:16 +03:00
|
|
|
{
|
|
|
|
auto vFlake = state.allocValue();
|
2019-05-24 00:42:13 +03:00
|
|
|
|
2020-01-22 21:59:59 +02:00
|
|
|
callFlake(state, lockedFlake, *vFlake);
|
2019-05-24 00:42:13 +03:00
|
|
|
|
2019-10-14 15:40:16 +03:00
|
|
|
auto aOutputs = vFlake->attrs->get(state.symbols.create("outputs"));
|
|
|
|
assert(aOutputs);
|
2019-04-08 15:21:13 +03:00
|
|
|
|
2022-02-04 01:31:33 +02:00
|
|
|
state.forceValue(*aOutputs->value, [&]() { return aOutputs->value->determinePos(noPos); });
|
2019-04-08 15:21:13 +03:00
|
|
|
|
2020-02-14 23:45:33 +02:00
|
|
|
return aOutputs->value;
|
2019-10-14 15:40:16 +03:00
|
|
|
}
|
2019-04-08 15:21:13 +03:00
|
|
|
|
2020-04-20 14:13:52 +03:00
|
|
|
ref<eval_cache::EvalCache> openEvalCache(
|
|
|
|
EvalState & state,
|
2020-08-07 15:13:24 +03:00
|
|
|
std::shared_ptr<flake::LockedFlake> lockedFlake)
|
2020-04-20 14:13:52 +03:00
|
|
|
{
|
2020-08-04 06:46:28 +03:00
|
|
|
auto fingerprint = lockedFlake->getFingerprint();
|
2020-07-16 17:58:53 +03:00
|
|
|
return make_ref<nix::eval_cache::EvalCache>(
|
2020-08-07 15:13:24 +03:00
|
|
|
evalSettings.useEvalCache && evalSettings.pureEval
|
2020-07-16 17:58:53 +03:00
|
|
|
? std::optional { std::cref(fingerprint) }
|
|
|
|
: std::nullopt,
|
2020-04-20 14:13:52 +03:00
|
|
|
state,
|
2020-04-20 16:27:09 +03:00
|
|
|
[&state, lockedFlake]()
|
2020-04-20 14:13:52 +03:00
|
|
|
{
|
|
|
|
/* For testing whether the evaluation cache is
|
|
|
|
complete. */
|
|
|
|
if (getEnv("NIX_ALLOW_EVAL").value_or("1") == "0")
|
|
|
|
throw Error("not everything is cached, but evaluation is not allowed");
|
|
|
|
|
|
|
|
auto vFlake = state.allocValue();
|
2020-04-20 16:27:09 +03:00
|
|
|
flake::callFlake(state, *lockedFlake, *vFlake);
|
2020-04-20 14:13:52 +03:00
|
|
|
|
2022-01-21 17:43:16 +02:00
|
|
|
state.forceAttrs(*vFlake, noPos);
|
2020-04-20 14:13:52 +03:00
|
|
|
|
|
|
|
auto aOutputs = vFlake->attrs->get(state.symbols.create("outputs"));
|
|
|
|
assert(aOutputs);
|
|
|
|
|
|
|
|
return aOutputs->value;
|
2020-07-16 17:58:53 +03:00
|
|
|
});
|
2020-04-20 14:13:52 +03:00
|
|
|
}
|
|
|
|
|
2020-06-17 18:13:01 +03:00
|
|
|
static std::string showAttrPaths(const std::vector<std::string> & paths)
|
|
|
|
{
|
|
|
|
std::string s;
|
|
|
|
for (const auto & [n, i] : enumerate(paths)) {
|
|
|
|
if (n > 0) s += n + 1 == paths.size() ? " or " : ", ";
|
|
|
|
s += '\''; s += i; s += '\'';
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2021-02-17 18:32:10 +02:00
|
|
|
InstallableFlake::InstallableFlake(
|
|
|
|
SourceExprCommand * cmd,
|
|
|
|
ref<EvalState> state,
|
|
|
|
FlakeRef && flakeRef,
|
2022-02-14 21:39:44 +02:00
|
|
|
std::string_view fragment,
|
2022-04-22 16:17:01 +03:00
|
|
|
OutputsSpec outputsSpec,
|
2022-02-14 21:39:44 +02:00
|
|
|
Strings attrPaths,
|
|
|
|
Strings prefixes,
|
2021-02-17 18:32:10 +02:00
|
|
|
const flake::LockFlags & lockFlags)
|
|
|
|
: InstallableValue(state),
|
|
|
|
flakeRef(flakeRef),
|
2022-02-14 21:39:44 +02:00
|
|
|
attrPaths(fragment == "" ? attrPaths : Strings{(std::string) fragment}),
|
|
|
|
prefixes(fragment == "" ? Strings{} : prefixes),
|
2022-04-22 16:17:01 +03:00
|
|
|
outputsSpec(std::move(outputsSpec)),
|
2021-02-17 18:32:10 +02:00
|
|
|
lockFlags(lockFlags)
|
|
|
|
{
|
|
|
|
if (cmd && cmd->getAutoArgs(*state)->size())
|
|
|
|
throw UsageError("'--arg' and '--argstr' are incompatible with flakes");
|
|
|
|
}
|
|
|
|
|
2020-04-20 14:13:52 +03:00
|
|
|
std::tuple<std::string, FlakeRef, InstallableValue::DerivationInfo> InstallableFlake::toDerivation()
|
2019-10-14 15:40:16 +03:00
|
|
|
{
|
2022-04-14 15:04:19 +03:00
|
|
|
auto attr = getCursor(*state);
|
2022-02-14 21:39:44 +02:00
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
auto attrPath = attr->getAttrPathStr();
|
2022-03-04 10:44:00 +02:00
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
if (!attr->isDerivation())
|
|
|
|
throw Error("flake output attribute '%s' is not a derivation", attrPath);
|
2020-04-20 14:13:52 +03:00
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
auto drvPath = attr->forceDerivation();
|
2020-04-20 14:13:52 +03:00
|
|
|
|
2022-04-20 17:39:47 +03:00
|
|
|
std::set<std::string> outputsToInstall;
|
|
|
|
|
|
|
|
if (auto aMeta = attr->maybeGetAttr(state->sMeta))
|
|
|
|
if (auto aOutputsToInstall = aMeta->maybeGetAttr("outputsToInstall"))
|
|
|
|
for (auto & s : aOutputsToInstall->getListOfStrings())
|
|
|
|
outputsToInstall.insert(s);
|
|
|
|
|
2022-04-22 16:17:01 +03:00
|
|
|
if (outputsToInstall.empty() || std::get_if<AllOutputs>(&outputsSpec)) {
|
|
|
|
outputsToInstall.clear();
|
2022-04-20 17:39:47 +03:00
|
|
|
if (auto aOutputs = attr->maybeGetAttr(state->sOutputs))
|
|
|
|
for (auto & s : aOutputs->getListOfStrings())
|
|
|
|
outputsToInstall.insert(s);
|
2022-04-22 16:17:01 +03:00
|
|
|
}
|
2022-04-20 17:39:47 +03:00
|
|
|
|
|
|
|
if (outputsToInstall.empty())
|
|
|
|
outputsToInstall.insert("out");
|
|
|
|
|
2022-04-22 16:17:01 +03:00
|
|
|
if (auto outputNames = std::get_if<OutputNames>(&outputsSpec))
|
|
|
|
outputsToInstall = *outputNames;
|
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
auto drvInfo = DerivationInfo {
|
2022-04-20 17:39:47 +03:00
|
|
|
.drvPath = std::move(drvPath),
|
|
|
|
.outputsToInstall = std::move(outputsToInstall),
|
2022-04-14 15:04:19 +03:00
|
|
|
};
|
2019-06-07 23:25:48 +03:00
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
return {attrPath, getLockedFlake()->flake.lockedRef, std::move(drvInfo)};
|
2019-10-14 15:40:16 +03:00
|
|
|
}
|
|
|
|
|
2020-04-20 14:13:52 +03:00
|
|
|
std::vector<InstallableValue::DerivationInfo> InstallableFlake::toDerivations()
|
2019-10-22 01:21:58 +03:00
|
|
|
{
|
2020-04-20 14:13:52 +03:00
|
|
|
std::vector<DerivationInfo> res;
|
2019-12-11 15:53:30 +02:00
|
|
|
res.push_back(std::get<2>(toDerivation()));
|
|
|
|
return res;
|
2019-10-22 01:21:58 +03:00
|
|
|
}
|
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
std::pair<Value *, PosIdx> InstallableFlake::toValue(EvalState & state)
|
2019-10-14 15:40:16 +03:00
|
|
|
{
|
2022-04-14 15:04:19 +03:00
|
|
|
return {&getCursor(state)->forceValue(), noPos};
|
2019-10-14 15:40:16 +03:00
|
|
|
}
|
2019-04-08 15:21:13 +03:00
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
std::vector<ref<eval_cache::AttrCursor>>
|
2020-08-07 15:13:24 +03:00
|
|
|
InstallableFlake::getCursors(EvalState & state)
|
2020-04-20 16:27:09 +03:00
|
|
|
{
|
|
|
|
auto evalCache = openEvalCache(state,
|
2020-08-07 15:13:24 +03:00
|
|
|
std::make_shared<flake::LockedFlake>(lockFlake(state, flakeRef, lockFlags)));
|
2020-04-20 16:27:09 +03:00
|
|
|
|
|
|
|
auto root = evalCache->getRoot();
|
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
std::vector<ref<eval_cache::AttrCursor>> res;
|
2020-04-20 16:27:09 +03:00
|
|
|
|
|
|
|
for (auto & attrPath : getActualAttrPaths()) {
|
|
|
|
auto attr = root->findAlongAttrPath(parseAttrPath(state, attrPath));
|
2022-04-14 15:04:19 +03:00
|
|
|
if (attr) res.push_back(ref(*attr));
|
2020-04-20 16:27:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-04-14 15:04:19 +03:00
|
|
|
ref<eval_cache::AttrCursor> InstallableFlake::getCursor(EvalState & state)
|
|
|
|
{
|
|
|
|
auto lockedFlake = getLockedFlake();
|
|
|
|
|
|
|
|
auto cache = openEvalCache(state, lockedFlake);
|
|
|
|
auto root = cache->getRoot();
|
|
|
|
|
|
|
|
Suggestions suggestions;
|
|
|
|
|
|
|
|
auto attrPaths = getActualAttrPaths();
|
|
|
|
|
|
|
|
for (auto & attrPath : attrPaths) {
|
|
|
|
debug("trying flake output attribute '%s'", attrPath);
|
|
|
|
|
|
|
|
auto attrOrSuggestions = root->findAlongAttrPath(
|
|
|
|
parseAttrPath(state, attrPath),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!attrOrSuggestions) {
|
|
|
|
suggestions += attrOrSuggestions.getSuggestions();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *attrOrSuggestions;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw Error(
|
|
|
|
suggestions,
|
|
|
|
"flake '%s' does not provide attribute %s",
|
|
|
|
flakeRef,
|
|
|
|
showAttrPaths(attrPaths));
|
|
|
|
}
|
|
|
|
|
2020-05-13 08:45:45 +03:00
|
|
|
std::shared_ptr<flake::LockedFlake> InstallableFlake::getLockedFlake() const
|
|
|
|
{
|
2020-10-26 21:45:39 +02:00
|
|
|
if (!_lockedFlake) {
|
2022-04-14 15:04:19 +03:00
|
|
|
flake::LockFlags lockFlagsApplyConfig = lockFlags;
|
|
|
|
lockFlagsApplyConfig.applyNixConfig = true;
|
2021-07-01 17:54:22 +03:00
|
|
|
_lockedFlake = std::make_shared<flake::LockedFlake>(lockFlake(*state, flakeRef, lockFlagsApplyConfig));
|
2020-10-26 21:45:39 +02:00
|
|
|
}
|
2020-05-13 08:45:45 +03:00
|
|
|
return _lockedFlake;
|
|
|
|
}
|
|
|
|
|
2020-05-05 19:49:39 +03:00
|
|
|
FlakeRef InstallableFlake::nixpkgsFlakeRef() const
|
|
|
|
{
|
2020-05-13 08:45:45 +03:00
|
|
|
auto lockedFlake = getLockedFlake();
|
2020-05-05 19:49:39 +03:00
|
|
|
|
2020-06-11 15:40:21 +03:00
|
|
|
if (auto nixpkgsInput = lockedFlake->lockFile.findInput({"nixpkgs"})) {
|
|
|
|
if (auto lockedNode = std::dynamic_pointer_cast<const flake::LockedNode>(nixpkgsInput)) {
|
2020-05-28 13:13:13 +03:00
|
|
|
debug("using nixpkgs flake '%s'", lockedNode->lockedRef);
|
|
|
|
return std::move(lockedNode->lockedRef);
|
|
|
|
}
|
2020-05-05 19:49:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return Installable::nixpkgsFlakeRef();
|
|
|
|
}
|
|
|
|
|
2019-04-08 17:11:17 +03:00
|
|
|
std::vector<std::shared_ptr<Installable>> SourceExprCommand::parseInstallables(
|
|
|
|
ref<Store> store, std::vector<std::string> ss)
|
2017-04-25 12:20:37 +03:00
|
|
|
{
|
|
|
|
std::vector<std::shared_ptr<Installable>> result;
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2022-03-26 12:32:38 +02:00
|
|
|
if (readOnlyMode) {
|
|
|
|
settings.readOnlyMode = true;
|
|
|
|
}
|
|
|
|
|
2019-11-27 01:05:30 +02:00
|
|
|
if (file || expr) {
|
|
|
|
if (file && expr)
|
|
|
|
throw UsageError("'--file' and '--expr' are exclusive");
|
|
|
|
|
2019-04-08 17:11:17 +03:00
|
|
|
// FIXME: backward compatibility hack
|
2019-11-27 01:05:30 +02:00
|
|
|
if (file) evalSettings.pureEval = false;
|
2017-04-25 16:18:05 +03:00
|
|
|
|
2019-04-08 17:11:17 +03:00
|
|
|
auto state = getEvalState();
|
|
|
|
auto vFile = state->allocValue();
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2022-03-16 20:48:50 +02:00
|
|
|
if (file == "-") {
|
|
|
|
auto e = state->parseStdin();
|
|
|
|
state->eval(e, *vFile);
|
|
|
|
} else if (file)
|
2019-11-27 01:05:30 +02:00
|
|
|
state->evalFile(lookupFileArg(*state, *file), *vFile);
|
|
|
|
else {
|
|
|
|
auto e = state->parseExprFromString(*expr, absPath("."));
|
|
|
|
state->eval(e, *vFile);
|
|
|
|
}
|
2017-07-04 16:38:23 +03:00
|
|
|
|
2022-04-22 16:17:01 +03:00
|
|
|
for (auto & s : ss) {
|
|
|
|
auto [prefix, outputsSpec] = parseOutputsSpec(s);
|
|
|
|
result.push_back(
|
|
|
|
std::make_shared<InstallableAttrPath>(
|
|
|
|
state, *this, vFile,
|
|
|
|
prefix == "." ? "" : prefix,
|
|
|
|
outputsSpec));
|
|
|
|
}
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2019-04-08 17:11:17 +03:00
|
|
|
} else {
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2019-04-08 17:11:17 +03:00
|
|
|
for (auto & s : ss) {
|
2020-05-06 18:20:23 +03:00
|
|
|
std::exception_ptr ex;
|
|
|
|
|
2021-09-02 15:01:07 +03:00
|
|
|
if (s.find('/') != std::string::npos) {
|
|
|
|
try {
|
|
|
|
result.push_back(std::make_shared<InstallableStorePath>(store, store->followLinksToStorePath(s)));
|
|
|
|
continue;
|
|
|
|
} catch (BadStorePath &) {
|
|
|
|
} catch (...) {
|
|
|
|
if (!ex)
|
|
|
|
ex = std::current_exception();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-06 18:20:23 +03:00
|
|
|
try {
|
2022-04-22 16:17:01 +03:00
|
|
|
auto [flakeRef, fragment, outputsSpec] = parseFlakeRefWithFragmentAndOutputsSpec(s, absPath("."));
|
2020-05-06 18:20:23 +03:00
|
|
|
result.push_back(std::make_shared<InstallableFlake>(
|
2021-02-17 18:32:10 +02:00
|
|
|
this,
|
|
|
|
getEvalState(),
|
|
|
|
std::move(flakeRef),
|
2022-02-14 21:39:44 +02:00
|
|
|
fragment,
|
2022-04-22 16:17:01 +03:00
|
|
|
outputsSpec,
|
2022-02-14 21:39:44 +02:00
|
|
|
getDefaultFlakeAttrPaths(),
|
|
|
|
getDefaultFlakeAttrPathPrefixes(),
|
2021-02-17 18:32:10 +02:00
|
|
|
lockFlags));
|
2020-05-06 18:20:23 +03:00
|
|
|
continue;
|
|
|
|
} catch (...) {
|
|
|
|
ex = std::current_exception();
|
2019-04-08 17:22:04 +03:00
|
|
|
}
|
|
|
|
|
2020-05-06 18:20:23 +03:00
|
|
|
std::rethrow_exception(ex);
|
2019-04-08 17:11:17 +03:00
|
|
|
}
|
2017-04-25 12:20:37 +03:00
|
|
|
}
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2017-04-25 12:20:37 +03:00
|
|
|
return result;
|
|
|
|
}
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2019-04-08 17:11:17 +03:00
|
|
|
std::shared_ptr<Installable> SourceExprCommand::parseInstallable(
|
|
|
|
ref<Store> store, const std::string & installable)
|
2017-09-10 16:58:30 +03:00
|
|
|
{
|
2019-04-08 17:11:17 +03:00
|
|
|
auto installables = parseInstallables(store, {installable});
|
2017-09-10 16:58:30 +03:00
|
|
|
assert(installables.size() == 1);
|
|
|
|
return installables.front();
|
|
|
|
}
|
|
|
|
|
2022-03-28 15:21:35 +03:00
|
|
|
BuiltPaths Installable::build(
|
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables,
|
|
|
|
BuildMode bMode)
|
2021-05-17 09:45:08 +03:00
|
|
|
{
|
|
|
|
BuiltPaths res;
|
2022-03-28 15:21:35 +03:00
|
|
|
for (auto & [_, builtPath] : build2(evalStore, store, mode, installables, bMode))
|
|
|
|
res.push_back(builtPath);
|
2021-05-17 09:45:08 +03:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-03-28 15:21:35 +03:00
|
|
|
std::vector<std::pair<std::shared_ptr<Installable>, BuiltPath>> Installable::build2(
|
2021-09-10 11:39:39 +03:00
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables,
|
|
|
|
BuildMode bMode)
|
2017-04-25 12:20:37 +03:00
|
|
|
{
|
2020-07-15 21:05:42 +03:00
|
|
|
if (mode == Realise::Nothing)
|
2017-07-14 18:10:13 +03:00
|
|
|
settings.readOnlyMode = true;
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2021-04-05 16:48:18 +03:00
|
|
|
std::vector<DerivedPath> pathsToBuild;
|
2022-03-28 15:21:35 +03:00
|
|
|
std::map<DerivedPath, std::vector<std::shared_ptr<Installable>>> backmap;
|
2017-07-14 18:10:13 +03:00
|
|
|
|
2017-09-06 17:03:22 +03:00
|
|
|
for (auto & i : installables) {
|
2022-03-28 15:21:35 +03:00
|
|
|
for (auto b : i->toDerivedPaths()) {
|
|
|
|
pathsToBuild.push_back(b);
|
|
|
|
backmap[b].push_back(i);
|
|
|
|
}
|
2017-09-06 17:03:22 +03:00
|
|
|
}
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2022-03-28 15:21:35 +03:00
|
|
|
std::vector<std::pair<std::shared_ptr<Installable>, BuiltPath>> res;
|
|
|
|
|
2022-03-08 20:50:46 +02:00
|
|
|
switch (mode) {
|
2022-03-28 15:21:35 +03:00
|
|
|
|
2022-03-08 20:50:46 +02:00
|
|
|
case Realise::Nothing:
|
|
|
|
case Realise::Derivation:
|
2017-09-06 17:03:22 +03:00
|
|
|
printMissing(store, pathsToBuild, lvlError);
|
2022-03-28 15:21:35 +03:00
|
|
|
|
|
|
|
for (auto & path : pathsToBuild) {
|
|
|
|
for (auto & installable : backmap[path]) {
|
|
|
|
std::visit(overloaded {
|
|
|
|
[&](const DerivedPath::Built & bfd) {
|
|
|
|
OutputPathMap outputs;
|
|
|
|
auto drv = evalStore->readDerivation(bfd.drvPath);
|
|
|
|
auto outputHashes = staticOutputHashes(*evalStore, drv); // FIXME: expensive
|
|
|
|
auto drvOutputs = drv.outputsAndOptPaths(*store);
|
|
|
|
for (auto & output : bfd.outputs) {
|
2022-05-04 08:44:32 +03:00
|
|
|
auto outputHash = get(outputHashes, output);
|
|
|
|
if (!outputHash)
|
2022-03-28 15:21:35 +03:00
|
|
|
throw Error(
|
|
|
|
"the derivation '%s' doesn't have an output named '%s'",
|
|
|
|
store->printStorePath(bfd.drvPath), output);
|
|
|
|
if (settings.isExperimentalFeatureEnabled(Xp::CaDerivations)) {
|
2022-05-04 08:44:32 +03:00
|
|
|
DrvOutput outputId { *outputHash, output };
|
2022-03-28 15:21:35 +03:00
|
|
|
auto realisation = store->queryRealisation(outputId);
|
|
|
|
if (!realisation)
|
|
|
|
throw Error(
|
2022-04-21 10:26:45 +03:00
|
|
|
"cannot operate on an output of the "
|
|
|
|
"unbuilt derivation '%s'",
|
2022-03-28 15:21:35 +03:00
|
|
|
outputId.to_string());
|
|
|
|
outputs.insert_or_assign(output, realisation->outPath);
|
|
|
|
} else {
|
|
|
|
// If ca-derivations isn't enabled, assume that
|
|
|
|
// the output path is statically known.
|
2022-05-04 08:44:32 +03:00
|
|
|
auto drvOutput = get(drvOutputs, output);
|
|
|
|
assert(drvOutput);
|
|
|
|
assert(drvOutput->second);
|
2022-03-28 15:21:35 +03:00
|
|
|
outputs.insert_or_assign(
|
2022-05-04 08:44:32 +03:00
|
|
|
output, *drvOutput->second);
|
2022-03-28 15:21:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
res.push_back({installable, BuiltPath::Built { bfd.drvPath, outputs }});
|
|
|
|
},
|
|
|
|
[&](const DerivedPath::Opaque & bo) {
|
|
|
|
res.push_back({installable, BuiltPath::Opaque { bo.path }});
|
|
|
|
},
|
|
|
|
}, path.raw());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2022-03-08 20:50:46 +02:00
|
|
|
case Realise::Outputs: {
|
|
|
|
for (auto & buildResult : store->buildPathsWithResults(pathsToBuild, bMode, evalStore)) {
|
|
|
|
if (!buildResult.success())
|
|
|
|
buildResult.rethrow();
|
2022-03-28 15:21:35 +03:00
|
|
|
|
|
|
|
for (auto & installable : backmap[buildResult.path]) {
|
|
|
|
std::visit(overloaded {
|
|
|
|
[&](const DerivedPath::Built & bfd) {
|
|
|
|
std::map<std::string, StorePath> outputs;
|
|
|
|
for (auto & path : buildResult.builtOutputs)
|
|
|
|
outputs.emplace(path.first.outputName, path.second.outPath);
|
|
|
|
res.push_back({installable, BuiltPath::Built { bfd.drvPath, outputs }});
|
|
|
|
},
|
|
|
|
[&](const DerivedPath::Opaque & bo) {
|
|
|
|
res.push_back({installable, BuiltPath::Opaque { bo.path }});
|
|
|
|
},
|
|
|
|
}, buildResult.path.raw());
|
|
|
|
}
|
2022-03-08 20:50:46 +02:00
|
|
|
}
|
2022-03-28 15:21:35 +03:00
|
|
|
|
|
|
|
break;
|
2022-03-08 20:50:46 +02:00
|
|
|
}
|
2022-03-28 15:21:35 +03:00
|
|
|
|
2022-03-08 20:50:46 +02:00
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
}
|
2022-03-28 15:21:35 +03:00
|
|
|
|
|
|
|
return res;
|
2017-09-06 17:03:22 +03:00
|
|
|
}
|
|
|
|
|
2022-03-02 14:54:08 +02:00
|
|
|
BuiltPaths Installable::toBuiltPaths(
|
2021-07-16 17:04:47 +03:00
|
|
|
ref<Store> evalStore,
|
2020-12-14 18:24:30 +02:00
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
OperateOn operateOn,
|
2021-09-10 11:39:39 +03:00
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables)
|
2017-09-06 17:03:22 +03:00
|
|
|
{
|
2021-07-16 17:04:47 +03:00
|
|
|
if (operateOn == OperateOn::Output)
|
2022-03-02 14:54:08 +02:00
|
|
|
return Installable::build(evalStore, store, mode, installables);
|
2021-07-16 17:04:47 +03:00
|
|
|
else {
|
2020-07-15 21:22:52 +03:00
|
|
|
if (mode == Realise::Nothing)
|
|
|
|
settings.readOnlyMode = true;
|
|
|
|
|
2021-05-17 09:45:08 +03:00
|
|
|
BuiltPaths res;
|
2022-03-02 14:54:08 +02:00
|
|
|
for (auto & drvPath : Installable::toDerivations(store, installables, true))
|
2021-05-17 09:45:08 +03:00
|
|
|
res.push_back(BuiltPath::Opaque{drvPath});
|
|
|
|
return res;
|
2020-07-15 21:22:52 +03:00
|
|
|
}
|
2020-12-14 18:24:30 +02:00
|
|
|
}
|
|
|
|
|
2022-03-02 14:54:08 +02:00
|
|
|
StorePathSet Installable::toStorePaths(
|
2021-07-16 17:04:47 +03:00
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
2020-12-14 18:24:30 +02:00
|
|
|
Realise mode, OperateOn operateOn,
|
2021-09-10 11:39:39 +03:00
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables)
|
2020-12-14 18:24:30 +02:00
|
|
|
{
|
|
|
|
StorePathSet outPaths;
|
2021-07-16 17:04:47 +03:00
|
|
|
for (auto & path : toBuiltPaths(evalStore, store, mode, operateOn, installables)) {
|
2021-05-17 09:45:08 +03:00
|
|
|
auto thisOutPaths = path.outPaths();
|
|
|
|
outPaths.insert(thisOutPaths.begin(), thisOutPaths.end());
|
|
|
|
}
|
2017-04-25 17:19:22 +03:00
|
|
|
return outPaths;
|
2017-04-25 12:20:37 +03:00
|
|
|
}
|
|
|
|
|
2022-03-02 14:54:08 +02:00
|
|
|
StorePath Installable::toStorePath(
|
2021-07-16 17:04:47 +03:00
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
2020-07-15 21:22:52 +03:00
|
|
|
Realise mode, OperateOn operateOn,
|
2017-09-10 16:58:30 +03:00
|
|
|
std::shared_ptr<Installable> installable)
|
|
|
|
{
|
2021-07-16 17:04:47 +03:00
|
|
|
auto paths = toStorePaths(evalStore, store, mode, operateOn, {installable});
|
2017-09-10 16:58:30 +03:00
|
|
|
|
|
|
|
if (paths.size() != 1)
|
2019-04-09 00:58:33 +03:00
|
|
|
throw Error("argument '%s' should evaluate to one store path", installable->what());
|
2017-09-10 16:58:30 +03:00
|
|
|
|
2020-06-16 23:20:18 +03:00
|
|
|
return *paths.begin();
|
2017-09-10 16:58:30 +03:00
|
|
|
}
|
|
|
|
|
2022-03-02 14:54:08 +02:00
|
|
|
StorePathSet Installable::toDerivations(
|
2021-09-10 11:39:39 +03:00
|
|
|
ref<Store> store,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables,
|
|
|
|
bool useDeriver)
|
Add "nix show-derivation"
This debug command prints a store derivation in JSON format. For
example:
$ nix show-derivation nixpkgs.hello
{
"/nix/store/ayjwpwwiyy04nh9z71rsdgd3q7bra7ch-hello-2.10.drv": {
"outputs": {
"out": {
"path": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10"
}
},
"inputSrcs": [
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"inputDrvs": {
"/nix/store/13839aqdf6x4k3b785rw5f2l7857l6y3-bash-4.4-p12.drv": [
"out"
],
"/nix/store/vgdx7fdc7d4iirmnwj2py1nrvr5qwzj7-hello-2.10.tar.gz.drv": [
"out"
],
"/nix/store/x3kkd0vsqfflbvwf1055l9mr39bg0ms0-stdenv.drv": [
"out"
]
},
"platform": "x86_64-linux",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"args": [
"-e",
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"env": {
"buildInputs": "",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"configureFlags": "",
"doCheck": "1",
"name": "hello-2.10",
"nativeBuildInputs": "",
"out": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10",
"propagatedBuildInputs": "",
"propagatedNativeBuildInputs": "",
"src": "/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz",
"stdenv": "/nix/store/6zngq1rdh0ans9qyckqimqibgnlvlfrm-stdenv",
"system": "x86_64-linux"
}
}
}
This removes the need for pp-aterm.
2017-09-25 14:43:35 +03:00
|
|
|
{
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet drvPaths;
|
Add "nix show-derivation"
This debug command prints a store derivation in JSON format. For
example:
$ nix show-derivation nixpkgs.hello
{
"/nix/store/ayjwpwwiyy04nh9z71rsdgd3q7bra7ch-hello-2.10.drv": {
"outputs": {
"out": {
"path": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10"
}
},
"inputSrcs": [
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"inputDrvs": {
"/nix/store/13839aqdf6x4k3b785rw5f2l7857l6y3-bash-4.4-p12.drv": [
"out"
],
"/nix/store/vgdx7fdc7d4iirmnwj2py1nrvr5qwzj7-hello-2.10.tar.gz.drv": [
"out"
],
"/nix/store/x3kkd0vsqfflbvwf1055l9mr39bg0ms0-stdenv.drv": [
"out"
]
},
"platform": "x86_64-linux",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"args": [
"-e",
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"env": {
"buildInputs": "",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"configureFlags": "",
"doCheck": "1",
"name": "hello-2.10",
"nativeBuildInputs": "",
"out": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10",
"propagatedBuildInputs": "",
"propagatedNativeBuildInputs": "",
"src": "/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz",
"stdenv": "/nix/store/6zngq1rdh0ans9qyckqimqibgnlvlfrm-stdenv",
"system": "x86_64-linux"
}
}
}
This removes the need for pp-aterm.
2017-09-25 14:43:35 +03:00
|
|
|
|
2021-10-01 00:31:21 +03:00
|
|
|
for (const auto & i : installables)
|
|
|
|
for (const auto & b : i->toDerivedPaths())
|
2020-07-23 22:02:57 +03:00
|
|
|
std::visit(overloaded {
|
2021-10-01 00:31:21 +03:00
|
|
|
[&](const DerivedPath::Opaque & bo) {
|
2020-07-23 22:02:57 +03:00
|
|
|
if (!useDeriver)
|
|
|
|
throw Error("argument '%s' did not evaluate to a derivation", i->what());
|
2022-01-18 18:28:18 +02:00
|
|
|
drvPaths.insert(getDeriver(store, *i, bo.path));
|
2020-07-23 22:02:57 +03:00
|
|
|
},
|
2021-10-01 00:31:21 +03:00
|
|
|
[&](const DerivedPath::Built & bfd) {
|
2020-07-23 22:02:57 +03:00
|
|
|
drvPaths.insert(bfd.drvPath);
|
|
|
|
},
|
2021-04-05 17:05:21 +03:00
|
|
|
}, b.raw());
|
Add "nix show-derivation"
This debug command prints a store derivation in JSON format. For
example:
$ nix show-derivation nixpkgs.hello
{
"/nix/store/ayjwpwwiyy04nh9z71rsdgd3q7bra7ch-hello-2.10.drv": {
"outputs": {
"out": {
"path": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10"
}
},
"inputSrcs": [
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"inputDrvs": {
"/nix/store/13839aqdf6x4k3b785rw5f2l7857l6y3-bash-4.4-p12.drv": [
"out"
],
"/nix/store/vgdx7fdc7d4iirmnwj2py1nrvr5qwzj7-hello-2.10.tar.gz.drv": [
"out"
],
"/nix/store/x3kkd0vsqfflbvwf1055l9mr39bg0ms0-stdenv.drv": [
"out"
]
},
"platform": "x86_64-linux",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"args": [
"-e",
"/nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25b-default-builder.sh"
],
"env": {
"buildInputs": "",
"builder": "/nix/store/qp5fw57d38bd1n07ss4zxh88zg67c3vg-bash-4.4-p12/bin/bash",
"configureFlags": "",
"doCheck": "1",
"name": "hello-2.10",
"nativeBuildInputs": "",
"out": "/nix/store/w5w4v29ql0qwqhczkdxs94ix2lh7ibgs-hello-2.10",
"propagatedBuildInputs": "",
"propagatedNativeBuildInputs": "",
"src": "/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz",
"stdenv": "/nix/store/6zngq1rdh0ans9qyckqimqibgnlvlfrm-stdenv",
"system": "x86_64-linux"
}
}
}
This removes the need for pp-aterm.
2017-09-25 14:43:35 +03:00
|
|
|
|
|
|
|
return drvPaths;
|
|
|
|
}
|
|
|
|
|
2020-05-11 16:46:18 +03:00
|
|
|
InstallablesCommand::InstallablesCommand()
|
|
|
|
{
|
|
|
|
expectArgs({
|
|
|
|
.label = "installables",
|
|
|
|
.handler = {&_installables},
|
2020-05-11 22:49:02 +03:00
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
completeInstallable(prefix);
|
|
|
|
}}
|
2020-05-11 16:46:18 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-25 13:06:32 +03:00
|
|
|
void InstallablesCommand::prepare()
|
2017-04-25 12:20:37 +03:00
|
|
|
{
|
2019-11-27 01:05:30 +02:00
|
|
|
if (_installables.empty() && useDefaultInstallables())
|
2022-03-26 12:32:37 +02:00
|
|
|
// FIXME: commands like "nix profile install" should not have a
|
2019-04-19 17:07:37 +03:00
|
|
|
// default, probably.
|
|
|
|
_installables.push_back(".");
|
2019-04-08 17:11:17 +03:00
|
|
|
installables = parseInstallables(getStore(), _installables);
|
2017-08-29 17:18:00 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 17:20:00 +03:00
|
|
|
std::optional<FlakeRef> InstallablesCommand::getFlakeRefForCompletion()
|
|
|
|
{
|
|
|
|
if (_installables.empty()) {
|
|
|
|
if (useDefaultInstallables())
|
2022-02-18 14:19:57 +02:00
|
|
|
return parseFlakeRefWithFragment(".", absPath(".")).first;
|
2020-06-08 17:20:00 +03:00
|
|
|
return {};
|
|
|
|
}
|
2022-02-18 14:19:57 +02:00
|
|
|
return parseFlakeRefWithFragment(_installables.front(), absPath(".")).first;
|
2020-06-08 17:20:00 +03:00
|
|
|
}
|
|
|
|
|
2022-03-26 12:32:38 +02:00
|
|
|
InstallableCommand::InstallableCommand(bool supportReadOnlyMode)
|
|
|
|
: SourceExprCommand(supportReadOnlyMode)
|
2020-05-11 22:49:02 +03:00
|
|
|
{
|
|
|
|
expectArgs({
|
|
|
|
.label = "installable",
|
2020-05-12 12:53:32 +03:00
|
|
|
.optional = true,
|
2020-05-11 22:49:02 +03:00
|
|
|
.handler = {&_installable},
|
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
completeInstallable(prefix);
|
|
|
|
}}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-29 17:18:00 +03:00
|
|
|
void InstallableCommand::prepare()
|
|
|
|
{
|
2019-04-08 17:11:17 +03:00
|
|
|
installable = parseInstallable(getStore(), _installable);
|
2016-02-09 22:34:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|