2019-10-14 12:40:16 +00:00
|
|
|
#include "installables.hh"
|
2017-04-25 10:06:32 +00:00
|
|
|
#include "command.hh"
|
2016-02-09 20:34:24 +00:00
|
|
|
#include "attr-path.hh"
|
2017-10-24 10:45:11 +00:00
|
|
|
#include "common-eval-args.hh"
|
2016-02-09 20:34:24 +00:00
|
|
|
#include "derivations.hh"
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "get-drvs.hh"
|
|
|
|
#include "store-api.hh"
|
2017-04-25 09:20:37 +00:00
|
|
|
#include "shared.hh"
|
2019-06-05 14:51:54 +00:00
|
|
|
#include "flake/flake.hh"
|
2020-04-20 11:14:59 +00:00
|
|
|
#include "eval-cache.hh"
|
2020-03-30 12:03:28 +00:00
|
|
|
#include "url.hh"
|
2020-05-11 19:49:02 +00:00
|
|
|
#include "registry.hh"
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
#include <regex>
|
2019-05-23 21:42:13 +00:00
|
|
|
#include <queue>
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2020-10-23 04:59:01 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2016-02-09 20:34:24 +00:00
|
|
|
namespace nix {
|
|
|
|
|
2020-06-08 14:20:00 +00: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 07:39:51 +00:00
|
|
|
completions->add(input.first);
|
2020-06-08 14:20:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 11:46:07 +00:00
|
|
|
MixFlakeOptions::MixFlakeOptions()
|
2017-10-24 10:45:11 +00:00
|
|
|
{
|
2021-01-25 18:03:13 +00:00
|
|
|
auto category = "Common flake-related options";
|
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "recreate-lock-file",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Recreate the flake's lock file from scratch.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2020-05-05 16:59:33 +00:00
|
|
|
.handler = {&lockFlags.recreateLockFile, true}
|
|
|
|
});
|
2019-05-14 09:34:45 +00:00
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-update-lock-file",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Do not allow any updates to the flake's lock file.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2020-05-05 16:59:33 +00:00
|
|
|
.handler = {&lockFlags.updateLockFile, false}
|
|
|
|
});
|
2020-01-29 20:01:34 +00:00
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-write-lock-file",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Do not write the flake's newly generated lock file.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2020-05-05 16:59:33 +00:00
|
|
|
.handler = {&lockFlags.writeLockFile, false}
|
|
|
|
});
|
2019-05-14 09:34:45 +00:00
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-registries",
|
2021-07-21 12:27:37 +00:00
|
|
|
.description =
|
|
|
|
"Don't allow lookups in the flake registries. This option is deprecated; use `--no-use-registries`.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2021-07-02 12:36:14 +00:00
|
|
|
.handler = {[&]() {
|
|
|
|
lockFlags.useRegistries = false;
|
2021-07-21 12:27:37 +00:00
|
|
|
warn("'--no-registries' is deprecated; use '--no-use-registries'");
|
2021-07-02 12:36:14 +00:00
|
|
|
}}
|
2020-05-05 16:59:33 +00:00
|
|
|
});
|
2020-01-29 13:57:57 +00:00
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "commit-lock-file",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Commit changes to the flake's lock file.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2020-05-05 16:59:33 +00:00
|
|
|
.handler = {&lockFlags.commitLockFile, true}
|
|
|
|
});
|
2020-02-05 13:48:49 +00:00
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "update-input",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Update a specific flake input (ignoring its previous entry in the lock file).",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2020-05-05 16:59:33 +00:00
|
|
|
.labels = {"input-path"},
|
|
|
|
.handler = {[&](std::string s) {
|
|
|
|
lockFlags.inputUpdates.insert(flake::parseInputPath(s));
|
2020-06-08 14:20:00 +00:00
|
|
|
}},
|
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
if (auto flakeRef = getFlakeRefForCompletion())
|
|
|
|
completeFlakeInputPath(getEvalState(), *flakeRef, prefix);
|
2020-05-05 16:59:33 +00:00
|
|
|
}}
|
|
|
|
});
|
2020-01-29 22:12:58 +00:00
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "override-input",
|
2021-03-16 15:53:39 +00:00
|
|
|
.description = "Override a specific flake input (e.g. `dwarffs/nixpkgs`). This implies `--no-write-lock-file`.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2020-05-05 16:59:33 +00:00
|
|
|
.labels = {"input-path", "flake-url"},
|
|
|
|
.handler = {[&](std::string inputPath, std::string flakeRef) {
|
2021-03-16 15:53:39 +00:00
|
|
|
lockFlags.writeLockFile = false;
|
2020-01-29 13:57:57 +00:00
|
|
|
lockFlags.inputOverrides.insert_or_assign(
|
2020-05-05 16:59:33 +00:00
|
|
|
flake::parseInputPath(inputPath),
|
|
|
|
parseFlakeRef(flakeRef, absPath(".")));
|
|
|
|
}}
|
|
|
|
});
|
2020-07-01 18:23:39 +00:00
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "inputs-from",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Use the inputs of the specified flake as registry entries.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = category,
|
2020-07-01 18:23:39 +00: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 11:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SourceExprCommand::SourceExprCommand()
|
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "file",
|
|
|
|
.shortName = 'f',
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "Interpret installables as attribute paths relative to the Nix expression stored in *file*.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = installablesCategory,
|
2020-05-04 20:40:19 +00:00
|
|
|
.labels = {"file"},
|
2020-05-10 19:35:07 +00:00
|
|
|
.handler = {&file},
|
|
|
|
.completer = completePath
|
2020-05-04 20:40:19 +00:00
|
|
|
});
|
2019-11-26 23:05:30 +00:00
|
|
|
|
2020-05-05 16:59:33 +00:00
|
|
|
addFlag({
|
2021-01-13 13:18:04 +00:00
|
|
|
.longName = "expr",
|
|
|
|
.description = "Interpret installables as attribute paths relative to the Nix expression *expr*.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = installablesCategory,
|
2020-05-05 16:59:33 +00:00
|
|
|
.labels = {"expr"},
|
|
|
|
.handler = {&expr}
|
|
|
|
});
|
2020-07-15 18:22:52 +00:00
|
|
|
|
|
|
|
addFlag({
|
2021-01-13 13:18:04 +00:00
|
|
|
.longName = "derivation",
|
|
|
|
.description = "Operate on the store derivation rather than its outputs.",
|
2021-01-25 18:03:13 +00:00
|
|
|
.category = installablesCategory,
|
2020-07-15 18:22:52 +00:00
|
|
|
.handler = {&operateOn, OperateOn::Derivation},
|
|
|
|
});
|
2017-10-24 10:45:11 +00: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 15:52:10 +00:00
|
|
|
Strings SourceExprCommand::getDefaultFlakeAttrPaths()
|
|
|
|
{
|
|
|
|
return {"defaultPackage." + settings.thisSystem.get()};
|
|
|
|
}
|
|
|
|
|
|
|
|
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 19:49:02 +00:00
|
|
|
void SourceExprCommand::completeInstallable(std::string_view prefix)
|
|
|
|
{
|
2021-07-03 12:19:10 +00:00
|
|
|
if (file) {
|
|
|
|
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 19:37:33 +00:00
|
|
|
std::string searchWord;
|
2021-07-03 12:19:10 +00:00
|
|
|
if (sep != std::string::npos) {
|
2021-07-05 19:37:33 +00:00
|
|
|
searchWord = prefix_.substr(sep, std::string::npos);
|
|
|
|
prefix_ = prefix_.substr(0, sep);
|
2021-07-03 12:19:10 +00:00
|
|
|
} else {
|
2021-07-05 19:37:33 +00:00
|
|
|
searchWord = prefix_;
|
2021-07-03 12:19:10 +00:00
|
|
|
prefix_ = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
Value &v1(*findAlongAttrPath(*state, prefix_, *autoArgs, root).first);
|
|
|
|
state->forceValue(v1);
|
|
|
|
Value v2;
|
|
|
|
state->autoCallFunction(*autoArgs, v1, v2);
|
|
|
|
|
|
|
|
if (v2.type() == nAttrs) {
|
|
|
|
for (auto & i : *v2.attrs) {
|
2021-07-05 19:37:33 +00:00
|
|
|
std::string name = i.name;
|
|
|
|
if (name.find(searchWord) == 0) {
|
|
|
|
completions->add(i.name);
|
|
|
|
}
|
2021-07-03 12:19:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
completeFlakeRefWithFragment(
|
|
|
|
getEvalState(),
|
|
|
|
lockFlags,
|
|
|
|
getDefaultFlakeAttrPathPrefixes(),
|
|
|
|
getDefaultFlakeAttrPaths(),
|
|
|
|
prefix);
|
|
|
|
}
|
2020-06-05 12:09:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void completeFlakeRefWithFragment(
|
|
|
|
ref<EvalState> evalState,
|
|
|
|
flake::LockFlags lockFlags,
|
|
|
|
Strings attrPathPrefixes,
|
|
|
|
const Strings & defaultFlakeAttrPaths,
|
|
|
|
std::string_view prefix)
|
|
|
|
{
|
2020-05-11 19:49:02 +00:00
|
|
|
/* Look for flake output attributes that match the
|
|
|
|
prefix. */
|
|
|
|
try {
|
|
|
|
auto hash = prefix.find('#');
|
|
|
|
if (hash != std::string::npos) {
|
|
|
|
auto fragment = prefix.substr(hash + 1);
|
|
|
|
auto flakeRefS = std::string(prefix.substr(0, hash));
|
|
|
|
// FIXME: do tilde expansion.
|
|
|
|
auto flakeRef = parseFlakeRef(flakeRefS, absPath("."));
|
|
|
|
|
2020-06-05 12:09:12 +00:00
|
|
|
auto evalCache = openEvalCache(*evalState,
|
2020-08-07 12:13:24 +00:00
|
|
|
std::make_shared<flake::LockedFlake>(lockFlake(*evalState, flakeRef, lockFlags)));
|
2020-05-11 19:49:02 +00: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 12:09:12 +00:00
|
|
|
auto attrPathPrefix = parseAttrPath(*evalState, attrPathPrefixS);
|
2020-05-11 19:49:02 +00:00
|
|
|
auto attrPathS = attrPathPrefixS + std::string(fragment);
|
2020-06-05 12:09:12 +00:00
|
|
|
auto attrPath = parseAttrPath(*evalState, attrPathS);
|
2020-05-11 19:49:02 +00:00
|
|
|
|
|
|
|
std::string lastAttr;
|
|
|
|
if (!attrPath.empty() && !hasSuffix(attrPathS, ".")) {
|
|
|
|
lastAttr = attrPath.back();
|
|
|
|
attrPath.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto attr = root->findAlongAttrPath(attrPath);
|
|
|
|
if (!attr) continue;
|
|
|
|
|
2020-06-05 12:09:12 +00:00
|
|
|
for (auto & attr2 : attr->getAttrs()) {
|
2020-05-11 19:49:02 +00:00
|
|
|
if (hasPrefix(attr2, lastAttr)) {
|
|
|
|
auto attrPath2 = attr->getAttrPath(attr2);
|
|
|
|
/* Strip the attrpath prefix. */
|
|
|
|
attrPath2.erase(attrPath2.begin(), attrPath2.begin() + attrPathPrefix.size());
|
2020-10-09 07:39:51 +00:00
|
|
|
completions->add(flakeRefS + "#" + concatStringsSep(".", attrPath2));
|
2020-05-11 19:49:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And add an empty completion for the default
|
|
|
|
attrpaths. */
|
|
|
|
if (fragment.empty()) {
|
2020-06-05 12:09:12 +00:00
|
|
|
for (auto & attrPath : defaultFlakeAttrPaths) {
|
|
|
|
auto attr = root->findAlongAttrPath(parseAttrPath(*evalState, attrPath));
|
2020-05-11 19:49:02 +00:00
|
|
|
if (!attr) continue;
|
2020-10-09 07:39:51 +00:00
|
|
|
completions->add(flakeRefS + "#");
|
2020-05-11 19:49:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Error & e) {
|
|
|
|
warn(e.msg());
|
|
|
|
}
|
|
|
|
|
2020-06-05 12:09:12 +00:00
|
|
|
completeFlakeRef(evalState->store, prefix);
|
2020-05-11 20:10:33 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 12:09:12 +00:00
|
|
|
void completeFlakeRef(ref<Store> store, std::string_view prefix)
|
2020-05-11 20:10:33 +00:00
|
|
|
{
|
|
|
|
if (prefix == "")
|
2020-10-09 07:39:51 +00:00
|
|
|
completions->add(".");
|
2020-05-11 20:10:33 +00:00
|
|
|
|
|
|
|
completeDir(0, prefix);
|
|
|
|
|
2020-05-11 19:49:02 +00:00
|
|
|
/* Look for registry entries that match the prefix. */
|
2020-06-05 12:09:12 +00:00
|
|
|
for (auto & registry : fetchers::getRegistries(store)) {
|
2020-05-11 19:49:02 +00: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-29 22:44:11 +00:00
|
|
|
auto from = entry.from.to_string();
|
2020-05-11 19:49:02 +00:00
|
|
|
if (!hasPrefix(prefix, "flake:") && hasPrefix(from, "flake:")) {
|
|
|
|
std::string from2(from, 6);
|
|
|
|
if (hasPrefix(from2, prefix))
|
2020-10-09 07:39:51 +00:00
|
|
|
completions->add(from2);
|
2020-05-11 19:49:02 +00:00
|
|
|
} else {
|
|
|
|
if (hasPrefix(from, prefix))
|
2020-10-09 07:39:51 +00:00
|
|
|
completions->add(from);
|
2020-05-11 19:49:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
DerivedPath Installable::toDerivedPath()
|
2017-09-06 14:03:22 +00:00
|
|
|
{
|
2021-05-17 06:45:08 +00:00
|
|
|
auto buildables = toDerivedPaths();
|
2017-09-06 14:03:22 +00: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]);
|
|
|
|
}
|
|
|
|
|
2020-04-20 13:27:09 +00:00
|
|
|
std::vector<std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>>
|
2020-08-07 12:13:24 +00:00
|
|
|
Installable::getCursors(EvalState & state)
|
2020-04-20 13:27:09 +00:00
|
|
|
{
|
|
|
|
auto evalCache =
|
2020-07-16 14:58:53 +00:00
|
|
|
std::make_shared<nix::eval_cache::EvalCache>(std::nullopt, state,
|
2020-04-20 13:27:09 +00:00
|
|
|
[&]() { return toValue(state).first; });
|
|
|
|
return {{evalCache->getRoot(), ""}};
|
|
|
|
}
|
|
|
|
|
2020-06-04 18:02:50 +00:00
|
|
|
std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>
|
2020-08-07 12:13:24 +00:00
|
|
|
Installable::getCursor(EvalState & state)
|
2020-06-04 18:02:50 +00:00
|
|
|
{
|
2020-08-07 12:13:24 +00:00
|
|
|
auto cursors = getCursors(state);
|
2020-06-04 18:02:50 +00:00
|
|
|
if (cursors.empty())
|
|
|
|
throw Error("cannot find flake attribute '%s'", what());
|
|
|
|
return cursors[0];
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
struct InstallableStorePath : Installable
|
2016-02-09 20:34:24 +00:00
|
|
|
{
|
2019-12-05 18:11:09 +00:00
|
|
|
ref<Store> store;
|
|
|
|
StorePath storePath;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2020-07-13 14:19:37 +00:00
|
|
|
InstallableStorePath(ref<Store> store, StorePath && storePath)
|
|
|
|
: store(store), storePath(std::move(storePath)) { }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
std::string what() override { return store->printStorePath(storePath); }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
DerivedPaths toDerivedPaths() override
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2020-07-15 17:50:32 +00:00
|
|
|
if (storePath.isDerivation()) {
|
2020-07-16 17:32:28 +00:00
|
|
|
auto drv = store->readDerivation(storePath);
|
2020-07-15 17:50:32 +00:00
|
|
|
return {
|
2021-05-17 06:45:08 +00:00
|
|
|
DerivedPath::Built {
|
2020-07-15 17:50:32 +00:00
|
|
|
.drvPath = storePath,
|
2021-05-17 06:45:08 +00:00
|
|
|
.outputs = drv.outputNames(),
|
2020-07-15 17:50:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {
|
2021-05-17 06:45:08 +00:00
|
|
|
DerivedPath::Opaque {
|
2020-07-23 19:02:57 +00:00
|
|
|
.path = storePath,
|
2020-07-15 17:50:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
2019-07-12 14:28:39 +00:00
|
|
|
|
2019-12-11 13:53:30 +00:00
|
|
|
std::optional<StorePath> getStorePath() override
|
2019-07-12 14:28:39 +00:00
|
|
|
{
|
2020-06-16 20:20:18 +00:00
|
|
|
return storePath;
|
2019-07-12 14:28:39 +00:00
|
|
|
}
|
2017-04-25 09:20:37 +00:00
|
|
|
};
|
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
DerivedPaths InstallableValue::toDerivedPaths()
|
2019-10-14 12:40:16 +00:00
|
|
|
{
|
2021-05-17 06:45:08 +00:00
|
|
|
DerivedPaths res;
|
2017-09-06 14:03:22 +00:00
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
std::map<StorePath, std::set<std::string>> drvsToOutputs;
|
2021-06-29 19:17:48 +00:00
|
|
|
RealisedPath::Set drvsToCopy;
|
2017-09-06 14:03:22 +00:00
|
|
|
|
2020-07-23 19:02:57 +00:00
|
|
|
// Group by derivation, helps with .all in particular
|
2019-10-14 12:40:16 +00:00
|
|
|
for (auto & drv : toDerivations()) {
|
|
|
|
auto outputName = drv.outputName;
|
|
|
|
if (outputName == "")
|
2020-07-23 19:02:57 +00:00
|
|
|
throw Error("derivation '%s' lacks an 'outputName' attribute", state->store->printStorePath(drv.drvPath));
|
2021-05-17 06:45:08 +00:00
|
|
|
drvsToOutputs[drv.drvPath].insert(outputName);
|
2021-06-29 19:17:48 +00:00
|
|
|
drvsToCopy.insert(drv.drvPath);
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
2019-10-14 12:40:16 +00:00
|
|
|
|
2020-07-23 19:02:57 +00:00
|
|
|
for (auto & i : drvsToOutputs)
|
2021-05-17 06:45:08 +00:00
|
|
|
res.push_back(DerivedPath::Built { i.first, i.second });
|
2020-07-23 19:02:57 +00:00
|
|
|
|
|
|
|
return res;
|
2019-10-14 12:40:16 +00:00
|
|
|
}
|
2017-08-29 14:18:00 +00:00
|
|
|
|
|
|
|
struct InstallableAttrPath : InstallableValue
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2020-05-09 15:35:33 +00:00
|
|
|
SourceExprCommand & cmd;
|
2020-04-16 14:54:34 +00:00
|
|
|
RootValue v;
|
2017-04-25 09:20:37 +00:00
|
|
|
std::string attrPath;
|
|
|
|
|
2020-05-09 15:35:33 +00:00
|
|
|
InstallableAttrPath(ref<EvalState> state, SourceExprCommand & cmd, Value * v, const std::string & attrPath)
|
|
|
|
: InstallableValue(state), cmd(cmd), v(allocRootValue(v)), attrPath(attrPath)
|
2017-04-25 09:20:37 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
std::string what() override { return attrPath; }
|
|
|
|
|
2020-02-07 13:22:01 +00:00
|
|
|
std::pair<Value *, Pos> toValue(EvalState & state) override
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2020-04-16 14:54:34 +00:00
|
|
|
auto [vRes, pos] = findAlongAttrPath(state, attrPath, *cmd.getAutoArgs(state), **v);
|
2019-04-08 14:11:17 +00:00
|
|
|
state.forceValue(*vRes);
|
2020-02-07 13:22:01 +00:00
|
|
|
return {vRes, pos};
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
2020-05-09 15:35:33 +00:00
|
|
|
|
|
|
|
virtual std::vector<InstallableValue::DerivationInfo> toDerivations() override;
|
2017-04-25 09:20:37 +00:00
|
|
|
};
|
|
|
|
|
2020-05-09 20:07:18 +00: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) {
|
|
|
|
res.push_back({
|
|
|
|
state->store->parseStorePath(drvInfo.queryDrvPath()),
|
2020-12-10 16:40:00 +00:00
|
|
|
state->store->maybeParseStorePath(drvInfo.queryOutPath()),
|
2020-05-09 20:07:18 +00:00
|
|
|
drvInfo.queryOutputName()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
std::vector<std::string> InstallableFlake::getActualAttrPaths()
|
2019-04-08 12:21:13 +00:00
|
|
|
{
|
2019-10-14 12:40:16 +00:00
|
|
|
std::vector<std::string> res;
|
2019-05-01 09:38:48 +00:00
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
for (auto & prefix : prefixes)
|
|
|
|
res.push_back(prefix + *attrPaths.begin());
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
for (auto & s : attrPaths)
|
|
|
|
res.push_back(s);
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
return res;
|
|
|
|
}
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2020-01-22 19:59:59 +00:00
|
|
|
Value * InstallableFlake::getFlakeOutputs(EvalState & state, const flake::LockedFlake & lockedFlake)
|
2019-10-14 12:40:16 +00:00
|
|
|
{
|
|
|
|
auto vFlake = state.allocValue();
|
2019-05-23 21:42:13 +00:00
|
|
|
|
2020-01-22 19:59:59 +00:00
|
|
|
callFlake(state, lockedFlake, *vFlake);
|
2019-05-23 21:42:13 +00:00
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
auto aOutputs = vFlake->attrs->get(state.symbols.create("outputs"));
|
|
|
|
assert(aOutputs);
|
2019-04-08 12:21:13 +00:00
|
|
|
|
2020-02-14 21:45:33 +00:00
|
|
|
state.forceValue(*aOutputs->value);
|
2019-04-08 12:21:13 +00:00
|
|
|
|
2020-02-14 21:45:33 +00:00
|
|
|
return aOutputs->value;
|
2019-10-14 12:40:16 +00:00
|
|
|
}
|
2019-04-08 12:21:13 +00:00
|
|
|
|
2020-04-20 11:13:52 +00:00
|
|
|
ref<eval_cache::EvalCache> openEvalCache(
|
|
|
|
EvalState & state,
|
2020-08-07 12:13:24 +00:00
|
|
|
std::shared_ptr<flake::LockedFlake> lockedFlake)
|
2020-04-20 11:13:52 +00:00
|
|
|
{
|
2020-08-04 03:46:28 +00:00
|
|
|
auto fingerprint = lockedFlake->getFingerprint();
|
2020-07-16 14:58:53 +00:00
|
|
|
return make_ref<nix::eval_cache::EvalCache>(
|
2020-08-07 12:13:24 +00:00
|
|
|
evalSettings.useEvalCache && evalSettings.pureEval
|
2020-07-16 14:58:53 +00:00
|
|
|
? std::optional { std::cref(fingerprint) }
|
|
|
|
: std::nullopt,
|
2020-04-20 11:13:52 +00:00
|
|
|
state,
|
2020-04-20 13:27:09 +00:00
|
|
|
[&state, lockedFlake]()
|
2020-04-20 11:13:52 +00: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 13:27:09 +00:00
|
|
|
flake::callFlake(state, *lockedFlake, *vFlake);
|
2020-04-20 11:13:52 +00:00
|
|
|
|
|
|
|
state.forceAttrs(*vFlake);
|
|
|
|
|
|
|
|
auto aOutputs = vFlake->attrs->get(state.symbols.create("outputs"));
|
|
|
|
assert(aOutputs);
|
|
|
|
|
|
|
|
return aOutputs->value;
|
2020-07-16 14:58:53 +00:00
|
|
|
});
|
2020-04-20 11:13:52 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 15:13:01 +00: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 16:32:10 +00:00
|
|
|
InstallableFlake::InstallableFlake(
|
|
|
|
SourceExprCommand * cmd,
|
|
|
|
ref<EvalState> state,
|
|
|
|
FlakeRef && flakeRef,
|
|
|
|
Strings && attrPaths,
|
|
|
|
Strings && prefixes,
|
|
|
|
const flake::LockFlags & lockFlags)
|
|
|
|
: InstallableValue(state),
|
|
|
|
flakeRef(flakeRef),
|
|
|
|
attrPaths(attrPaths),
|
|
|
|
prefixes(prefixes),
|
|
|
|
lockFlags(lockFlags)
|
|
|
|
{
|
|
|
|
if (cmd && cmd->getAutoArgs(*state)->size())
|
|
|
|
throw UsageError("'--arg' and '--argstr' are incompatible with flakes");
|
|
|
|
}
|
|
|
|
|
2020-04-20 11:13:52 +00:00
|
|
|
std::tuple<std::string, FlakeRef, InstallableValue::DerivationInfo> InstallableFlake::toDerivation()
|
2019-10-14 12:40:16 +00:00
|
|
|
{
|
2020-05-13 05:45:45 +00:00
|
|
|
auto lockedFlake = getLockedFlake();
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2020-08-07 12:13:24 +00:00
|
|
|
auto cache = openEvalCache(*state, lockedFlake);
|
2020-04-20 11:13:52 +00:00
|
|
|
auto root = cache->getRoot();
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
for (auto & attrPath : getActualAttrPaths()) {
|
2021-04-03 10:04:57 +00:00
|
|
|
auto attr = root->findAlongAttrPath(
|
|
|
|
parseAttrPath(*state, attrPath),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
2020-04-20 11:13:52 +00:00
|
|
|
if (!attr) continue;
|
|
|
|
|
|
|
|
if (!attr->isDerivation())
|
|
|
|
throw Error("flake output attribute '%s' is not a derivation", attrPath);
|
|
|
|
|
2020-06-29 14:39:41 +00:00
|
|
|
auto drvPath = attr->forceDerivation();
|
2019-05-29 19:30:22 +00:00
|
|
|
|
2020-04-20 11:13:52 +00:00
|
|
|
auto drvInfo = DerivationInfo{
|
|
|
|
std::move(drvPath),
|
2020-12-21 20:26:29 +00:00
|
|
|
state->store->maybeParseStorePath(attr->getAttr(state->sOutPath)->getString()),
|
2020-04-20 11:13:52 +00:00
|
|
|
attr->getAttr(state->sOutputName)->getString()
|
|
|
|
};
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2020-04-20 13:27:09 +00:00
|
|
|
return {attrPath, lockedFlake->flake.lockedRef, std::move(drvInfo)};
|
2019-06-07 20:25:48 +00:00
|
|
|
}
|
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
throw Error("flake '%s' does not provide attribute %s",
|
2020-06-17 15:13:01 +00:00
|
|
|
flakeRef, showAttrPaths(getActualAttrPaths()));
|
2019-10-14 12:40:16 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 11:13:52 +00:00
|
|
|
std::vector<InstallableValue::DerivationInfo> InstallableFlake::toDerivations()
|
2019-10-21 22:21:58 +00:00
|
|
|
{
|
2020-04-20 11:13:52 +00:00
|
|
|
std::vector<DerivationInfo> res;
|
2019-12-11 13:53:30 +00:00
|
|
|
res.push_back(std::get<2>(toDerivation()));
|
|
|
|
return res;
|
2019-10-21 22:21:58 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 13:22:01 +00:00
|
|
|
std::pair<Value *, Pos> InstallableFlake::toValue(EvalState & state)
|
2019-10-14 12:40:16 +00:00
|
|
|
{
|
2020-05-13 05:45:45 +00:00
|
|
|
auto lockedFlake = getLockedFlake();
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2020-05-13 05:45:45 +00:00
|
|
|
auto vOutputs = getFlakeOutputs(state, *lockedFlake);
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
auto emptyArgs = state.allocBindings(0);
|
2019-06-07 20:25:48 +00:00
|
|
|
|
2019-10-14 12:40:16 +00:00
|
|
|
for (auto & attrPath : getActualAttrPaths()) {
|
|
|
|
try {
|
2020-02-07 13:22:01 +00:00
|
|
|
auto [v, pos] = findAlongAttrPath(state, attrPath, *emptyArgs, *vOutputs);
|
2019-10-14 12:40:16 +00:00
|
|
|
state.forceValue(*v);
|
2020-02-07 13:22:01 +00:00
|
|
|
return {v, pos};
|
2019-10-14 12:40:16 +00:00
|
|
|
} catch (AttrPathNotFound & e) {
|
2019-04-08 12:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-14 12:40:16 +00:00
|
|
|
|
|
|
|
throw Error("flake '%s' does not provide attribute %s",
|
2020-06-17 15:13:01 +00:00
|
|
|
flakeRef, showAttrPaths(getActualAttrPaths()));
|
2019-10-14 12:40:16 +00:00
|
|
|
}
|
2019-04-08 12:21:13 +00:00
|
|
|
|
2020-04-20 13:27:09 +00:00
|
|
|
std::vector<std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>>
|
2020-08-07 12:13:24 +00:00
|
|
|
InstallableFlake::getCursors(EvalState & state)
|
2020-04-20 13:27:09 +00:00
|
|
|
{
|
|
|
|
auto evalCache = openEvalCache(state,
|
2020-08-07 12:13:24 +00:00
|
|
|
std::make_shared<flake::LockedFlake>(lockFlake(state, flakeRef, lockFlags)));
|
2020-04-20 13:27:09 +00:00
|
|
|
|
|
|
|
auto root = evalCache->getRoot();
|
|
|
|
|
|
|
|
std::vector<std::pair<std::shared_ptr<eval_cache::AttrCursor>, std::string>> res;
|
|
|
|
|
|
|
|
for (auto & attrPath : getActualAttrPaths()) {
|
|
|
|
auto attr = root->findAlongAttrPath(parseAttrPath(state, attrPath));
|
|
|
|
if (attr) res.push_back({attr, attrPath});
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2020-05-13 05:45:45 +00:00
|
|
|
std::shared_ptr<flake::LockedFlake> InstallableFlake::getLockedFlake() const
|
|
|
|
{
|
2021-07-01 14:54:22 +00:00
|
|
|
flake::LockFlags lockFlagsApplyConfig = lockFlags;
|
|
|
|
lockFlagsApplyConfig.applyNixConfig = true;
|
2020-10-26 19:45:39 +00:00
|
|
|
if (!_lockedFlake) {
|
2021-07-01 14:54:22 +00:00
|
|
|
_lockedFlake = std::make_shared<flake::LockedFlake>(lockFlake(*state, flakeRef, lockFlagsApplyConfig));
|
2020-10-26 19:45:39 +00:00
|
|
|
}
|
2020-05-13 05:45:45 +00:00
|
|
|
return _lockedFlake;
|
|
|
|
}
|
|
|
|
|
2020-05-05 16:49:39 +00:00
|
|
|
FlakeRef InstallableFlake::nixpkgsFlakeRef() const
|
|
|
|
{
|
2020-05-13 05:45:45 +00:00
|
|
|
auto lockedFlake = getLockedFlake();
|
2020-05-05 16:49:39 +00:00
|
|
|
|
2020-06-11 12:40:21 +00:00
|
|
|
if (auto nixpkgsInput = lockedFlake->lockFile.findInput({"nixpkgs"})) {
|
|
|
|
if (auto lockedNode = std::dynamic_pointer_cast<const flake::LockedNode>(nixpkgsInput)) {
|
2020-05-28 10:13:13 +00:00
|
|
|
debug("using nixpkgs flake '%s'", lockedNode->lockedRef);
|
|
|
|
return std::move(lockedNode->lockedRef);
|
|
|
|
}
|
2020-05-05 16:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Installable::nixpkgsFlakeRef();
|
|
|
|
}
|
|
|
|
|
2019-04-08 14:11:17 +00:00
|
|
|
std::vector<std::shared_ptr<Installable>> SourceExprCommand::parseInstallables(
|
|
|
|
ref<Store> store, std::vector<std::string> ss)
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
|
|
|
std::vector<std::shared_ptr<Installable>> result;
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
if (file || expr) {
|
|
|
|
if (file && expr)
|
|
|
|
throw UsageError("'--file' and '--expr' are exclusive");
|
|
|
|
|
2019-04-08 14:11:17 +00:00
|
|
|
// FIXME: backward compatibility hack
|
2019-11-26 23:05:30 +00:00
|
|
|
if (file) evalSettings.pureEval = false;
|
2017-04-25 13:18:05 +00:00
|
|
|
|
2019-04-08 14:11:17 +00:00
|
|
|
auto state = getEvalState();
|
|
|
|
auto vFile = state->allocValue();
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2019-11-26 23:05:30 +00:00
|
|
|
if (file)
|
|
|
|
state->evalFile(lookupFileArg(*state, *file), *vFile);
|
|
|
|
else {
|
|
|
|
auto e = state->parseExprFromString(*expr, absPath("."));
|
|
|
|
state->eval(e, *vFile);
|
|
|
|
}
|
2017-07-04 13:38:23 +00:00
|
|
|
|
2019-04-08 14:11:17 +00:00
|
|
|
for (auto & s : ss)
|
2020-05-09 15:35:33 +00:00
|
|
|
result.push_back(std::make_shared<InstallableAttrPath>(state, *this, vFile, s == "." ? "" : s));
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2019-04-08 14:11:17 +00:00
|
|
|
} else {
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2019-04-08 14:11:17 +00:00
|
|
|
for (auto & s : ss) {
|
2020-05-06 15:20:23 +00:00
|
|
|
std::exception_ptr ex;
|
|
|
|
|
2021-09-02 12:01:07 +00: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 15:20:23 +00:00
|
|
|
try {
|
|
|
|
auto [flakeRef, fragment] = parseFlakeRefWithFragment(s, absPath("."));
|
|
|
|
result.push_back(std::make_shared<InstallableFlake>(
|
2021-02-17 16:32:10 +00:00
|
|
|
this,
|
|
|
|
getEvalState(),
|
|
|
|
std::move(flakeRef),
|
2020-05-06 15:20:23 +00:00
|
|
|
fragment == "" ? getDefaultFlakeAttrPaths() : Strings{fragment},
|
2021-02-17 16:32:10 +00:00
|
|
|
getDefaultFlakeAttrPathPrefixes(),
|
|
|
|
lockFlags));
|
2020-05-06 15:20:23 +00:00
|
|
|
continue;
|
|
|
|
} catch (...) {
|
|
|
|
ex = std::current_exception();
|
2019-04-08 14:22:04 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 15:20:23 +00:00
|
|
|
std::rethrow_exception(ex);
|
2019-04-08 14:11:17 +00:00
|
|
|
}
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
return result;
|
|
|
|
}
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2019-04-08 14:11:17 +00:00
|
|
|
std::shared_ptr<Installable> SourceExprCommand::parseInstallable(
|
|
|
|
ref<Store> store, const std::string & installable)
|
2017-09-10 13:58:30 +00:00
|
|
|
{
|
2019-04-08 14:11:17 +00:00
|
|
|
auto installables = parseInstallables(store, {installable});
|
2017-09-10 13:58:30 +00:00
|
|
|
assert(installables.size() == 1);
|
|
|
|
return installables.front();
|
|
|
|
}
|
|
|
|
|
2021-07-16 14:04:47 +00:00
|
|
|
BuiltPaths getBuiltPaths(ref<Store> evalStore, ref<Store> store, const DerivedPaths & hopefullyBuiltPaths)
|
2021-05-17 06:45:08 +00:00
|
|
|
{
|
|
|
|
BuiltPaths res;
|
2021-09-30 21:31:21 +00:00
|
|
|
for (const auto & b : hopefullyBuiltPaths)
|
2021-05-17 06:45:08 +00:00
|
|
|
std::visit(
|
|
|
|
overloaded{
|
2021-09-30 21:31:21 +00:00
|
|
|
[&](const DerivedPath::Opaque & bo) {
|
2021-05-17 06:45:08 +00:00
|
|
|
res.push_back(BuiltPath::Opaque{bo.path});
|
|
|
|
},
|
2021-09-30 21:31:21 +00:00
|
|
|
[&](const DerivedPath::Built & bfd) {
|
2021-05-17 06:45:08 +00:00
|
|
|
OutputPathMap outputs;
|
2021-07-16 14:04:47 +00:00
|
|
|
auto drv = evalStore->readDerivation(bfd.drvPath);
|
|
|
|
auto outputHashes = staticOutputHashes(*evalStore, drv); // FIXME: expensive
|
2021-05-17 06:45:08 +00:00
|
|
|
auto drvOutputs = drv.outputsAndOptPaths(*store);
|
2021-07-16 14:04:47 +00:00
|
|
|
for (auto & output : bfd.outputs) {
|
2021-05-17 06:45:08 +00:00
|
|
|
if (!outputHashes.count(output))
|
|
|
|
throw Error(
|
2021-07-16 14:04:47 +00:00
|
|
|
"the derivation '%s' doesn't have an output named '%s'",
|
2021-05-17 06:45:08 +00:00
|
|
|
store->printStorePath(bfd.drvPath), output);
|
|
|
|
if (settings.isExperimentalFeatureEnabled(
|
|
|
|
"ca-derivations")) {
|
|
|
|
auto outputId =
|
|
|
|
DrvOutput{outputHashes.at(output), output};
|
|
|
|
auto realisation =
|
|
|
|
store->queryRealisation(outputId);
|
|
|
|
if (!realisation)
|
|
|
|
throw Error(
|
|
|
|
"cannot operate on an output of unbuilt "
|
2021-08-13 22:17:16 +00:00
|
|
|
"content-addressed derivation '%s'",
|
2021-05-17 06:45:08 +00: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.
|
|
|
|
assert(drvOutputs.count(output));
|
|
|
|
assert(drvOutputs.at(output).second);
|
|
|
|
outputs.insert_or_assign(
|
|
|
|
output, *drvOutputs.at(output).second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res.push_back(BuiltPath::Built{bfd.drvPath, outputs});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
b.raw());
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2021-09-10 08:39:39 +00:00
|
|
|
BuiltPaths build(
|
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables,
|
|
|
|
BuildMode bMode)
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2020-07-15 18:05:42 +00:00
|
|
|
if (mode == Realise::Nothing)
|
2017-07-14 15:10:13 +00:00
|
|
|
settings.readOnlyMode = true;
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2021-04-05 13:48:18 +00:00
|
|
|
std::vector<DerivedPath> pathsToBuild;
|
2017-07-14 15:10:13 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
for (auto & i : installables) {
|
2021-05-17 06:45:08 +00:00
|
|
|
auto b = i->toDerivedPaths();
|
|
|
|
pathsToBuild.insert(pathsToBuild.end(), b.begin(), b.end());
|
2017-09-06 14:03:22 +00:00
|
|
|
}
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2020-07-03 12:21:31 +00:00
|
|
|
if (mode == Realise::Nothing || mode == Realise::Derivation)
|
2017-09-06 14:03:22 +00:00
|
|
|
printMissing(store, pathsToBuild, lvlError);
|
2020-07-15 18:05:42 +00:00
|
|
|
else if (mode == Realise::Outputs)
|
2021-07-19 13:43:08 +00:00
|
|
|
store->buildPaths(pathsToBuild, bMode, evalStore);
|
2017-09-06 14:03:22 +00:00
|
|
|
|
2021-07-16 14:04:47 +00:00
|
|
|
return getBuiltPaths(evalStore, store, pathsToBuild);
|
2017-09-06 14:03:22 +00:00
|
|
|
}
|
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
BuiltPaths toBuiltPaths(
|
2021-07-16 14:04:47 +00:00
|
|
|
ref<Store> evalStore,
|
2020-12-14 16:24:30 +00:00
|
|
|
ref<Store> store,
|
|
|
|
Realise mode,
|
|
|
|
OperateOn operateOn,
|
2021-09-10 08:39:39 +00:00
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables)
|
2017-09-06 14:03:22 +00:00
|
|
|
{
|
2021-07-16 14:04:47 +00:00
|
|
|
if (operateOn == OperateOn::Output)
|
|
|
|
return build(evalStore, store, mode, installables);
|
|
|
|
else {
|
2020-07-15 18:22:52 +00:00
|
|
|
if (mode == Realise::Nothing)
|
|
|
|
settings.readOnlyMode = true;
|
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
BuiltPaths res;
|
|
|
|
for (auto & drvPath : toDerivations(store, installables, true))
|
|
|
|
res.push_back(BuiltPath::Opaque{drvPath});
|
|
|
|
return res;
|
2020-07-15 18:22:52 +00:00
|
|
|
}
|
2020-12-14 16:24:30 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 14:04:47 +00:00
|
|
|
StorePathSet toStorePaths(
|
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
2020-12-14 16:24:30 +00:00
|
|
|
Realise mode, OperateOn operateOn,
|
2021-09-10 08:39:39 +00:00
|
|
|
const std::vector<std::shared_ptr<Installable>> & installables)
|
2020-12-14 16:24:30 +00:00
|
|
|
{
|
|
|
|
StorePathSet outPaths;
|
2021-07-16 14:04:47 +00:00
|
|
|
for (auto & path : toBuiltPaths(evalStore, store, mode, operateOn, installables)) {
|
2021-05-17 06:45:08 +00:00
|
|
|
auto thisOutPaths = path.outPaths();
|
|
|
|
outPaths.insert(thisOutPaths.begin(), thisOutPaths.end());
|
|
|
|
}
|
2017-04-25 14:19:22 +00:00
|
|
|
return outPaths;
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 14:04:47 +00:00
|
|
|
StorePath toStorePath(
|
|
|
|
ref<Store> evalStore,
|
|
|
|
ref<Store> store,
|
2020-07-15 18:22:52 +00:00
|
|
|
Realise mode, OperateOn operateOn,
|
2017-09-10 13:58:30 +00:00
|
|
|
std::shared_ptr<Installable> installable)
|
|
|
|
{
|
2021-07-16 14:04:47 +00:00
|
|
|
auto paths = toStorePaths(evalStore, store, mode, operateOn, {installable});
|
2017-09-10 13:58:30 +00:00
|
|
|
|
|
|
|
if (paths.size() != 1)
|
2019-04-08 21:58:33 +00:00
|
|
|
throw Error("argument '%s' should evaluate to one store path", installable->what());
|
2017-09-10 13:58:30 +00:00
|
|
|
|
2020-06-16 20:20:18 +00:00
|
|
|
return *paths.begin();
|
2017-09-10 13:58:30 +00:00
|
|
|
}
|
|
|
|
|
2021-09-10 08:39:39 +00:00
|
|
|
StorePathSet toDerivations(
|
|
|
|
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 11:43:35 +00:00
|
|
|
{
|
2019-12-05 18:11:09 +00: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 11:43:35 +00:00
|
|
|
|
2021-09-30 21:31:21 +00:00
|
|
|
for (const auto & i : installables)
|
|
|
|
for (const auto & b : i->toDerivedPaths())
|
2020-07-23 19:02:57 +00:00
|
|
|
std::visit(overloaded {
|
2021-09-30 21:31:21 +00:00
|
|
|
[&](const DerivedPath::Opaque & bo) {
|
2020-07-23 19:02:57 +00:00
|
|
|
if (!useDeriver)
|
|
|
|
throw Error("argument '%s' did not evaluate to a derivation", i->what());
|
|
|
|
auto derivers = store->queryValidDerivers(bo.path);
|
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 11:43:35 +00:00
|
|
|
if (derivers.empty())
|
|
|
|
throw Error("'%s' does not have a known deriver", i->what());
|
|
|
|
// FIXME: use all derivers?
|
2020-06-16 20:20:18 +00:00
|
|
|
drvPaths.insert(*derivers.begin());
|
2020-07-23 19:02:57 +00:00
|
|
|
},
|
2021-09-30 21:31:21 +00:00
|
|
|
[&](const DerivedPath::Built & bfd) {
|
2020-07-23 19:02:57 +00:00
|
|
|
drvPaths.insert(bfd.drvPath);
|
|
|
|
},
|
2021-04-05 14:05:21 +00: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 11:43:35 +00:00
|
|
|
|
|
|
|
return drvPaths;
|
|
|
|
}
|
|
|
|
|
2020-05-11 13:46:18 +00:00
|
|
|
InstallablesCommand::InstallablesCommand()
|
|
|
|
{
|
|
|
|
expectArgs({
|
|
|
|
.label = "installables",
|
|
|
|
.handler = {&_installables},
|
2020-05-11 19:49:02 +00:00
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
completeInstallable(prefix);
|
|
|
|
}}
|
2020-05-11 13:46:18 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-25 10:06:32 +00:00
|
|
|
void InstallablesCommand::prepare()
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2019-11-26 23:05:30 +00:00
|
|
|
if (_installables.empty() && useDefaultInstallables())
|
2019-04-19 14:07:37 +00:00
|
|
|
// FIXME: commands like "nix install" should not have a
|
|
|
|
// default, probably.
|
|
|
|
_installables.push_back(".");
|
2019-04-08 14:11:17 +00:00
|
|
|
installables = parseInstallables(getStore(), _installables);
|
2017-08-29 14:18:00 +00:00
|
|
|
}
|
|
|
|
|
2020-06-08 14:20:00 +00:00
|
|
|
std::optional<FlakeRef> InstallablesCommand::getFlakeRefForCompletion()
|
|
|
|
{
|
|
|
|
if (_installables.empty()) {
|
|
|
|
if (useDefaultInstallables())
|
|
|
|
return parseFlakeRef(".", absPath("."));
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return parseFlakeRef(_installables.front(), absPath("."));
|
|
|
|
}
|
|
|
|
|
2020-05-11 19:49:02 +00:00
|
|
|
InstallableCommand::InstallableCommand()
|
|
|
|
{
|
|
|
|
expectArgs({
|
|
|
|
.label = "installable",
|
2020-05-12 09:53:32 +00:00
|
|
|
.optional = true,
|
2020-05-11 19:49:02 +00:00
|
|
|
.handler = {&_installable},
|
|
|
|
.completer = {[&](size_t, std::string_view prefix) {
|
|
|
|
completeInstallable(prefix);
|
|
|
|
}}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
void InstallableCommand::prepare()
|
|
|
|
{
|
2019-04-08 14:11:17 +00:00
|
|
|
installable = parseInstallable(getStore(), _installable);
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|