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"
|
|
|
|
|
|
|
|
#include <regex>
|
2016-02-09 20:34:24 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2017-10-24 10:45:11 +00:00
|
|
|
SourceExprCommand::SourceExprCommand()
|
|
|
|
{
|
|
|
|
mkFlag()
|
|
|
|
.shortName('f')
|
|
|
|
.longName("file")
|
|
|
|
.label("file")
|
|
|
|
.description("evaluate FILE rather than the default")
|
|
|
|
.dest(&file);
|
|
|
|
}
|
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
Value * SourceExprCommand::getSourceExpr(EvalState & state)
|
2016-08-23 15:11:19 +00:00
|
|
|
{
|
2017-04-25 09:20:37 +00:00
|
|
|
if (vSourceExpr) return vSourceExpr;
|
|
|
|
|
2017-07-19 14:06:10 +00:00
|
|
|
auto sToplevel = state.symbols.create("_toplevel");
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
vSourceExpr = state.allocValue();
|
2016-08-23 15:11:19 +00:00
|
|
|
|
2018-01-16 16:11:58 +00:00
|
|
|
if (file != "")
|
|
|
|
state.evalFile(lookupFileArg(state, file), *vSourceExpr);
|
2016-08-23 15:11:19 +00:00
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
/* Construct the installation source from $NIX_PATH. */
|
|
|
|
|
|
|
|
auto searchPath = state.getSearchPath();
|
|
|
|
|
2019-10-21 11:14:39 +00:00
|
|
|
state.mkAttrs(*vSourceExpr, 1024);
|
2017-07-19 14:06:10 +00:00
|
|
|
|
|
|
|
mkBool(*state.allocAttr(*vSourceExpr, sToplevel), true);
|
2016-08-23 15:11:19 +00:00
|
|
|
|
|
|
|
std::unordered_set<std::string> seen;
|
|
|
|
|
2019-10-09 13:36:51 +00:00
|
|
|
auto addEntry = [&](const std::string & name) {
|
|
|
|
if (name == "") return;
|
|
|
|
if (!seen.insert(name).second) return;
|
2017-04-25 09:20:37 +00:00
|
|
|
Value * v1 = state.allocValue();
|
|
|
|
mkPrimOpApp(*v1, state.getBuiltin("findFile"), state.getBuiltin("nixPath"));
|
|
|
|
Value * v2 = state.allocValue();
|
2019-10-09 13:36:51 +00:00
|
|
|
mkApp(*v2, *v1, mkString(*state.allocValue(), name));
|
|
|
|
mkApp(*state.allocAttr(*vSourceExpr, state.symbols.create(name)),
|
2017-04-25 09:20:37 +00:00
|
|
|
state.getBuiltin("import"), *v2);
|
2019-10-09 13:36:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (auto & i : searchPath)
|
|
|
|
/* Hack to handle channels. */
|
|
|
|
if (i.first.empty() && pathExists(i.second + "/manifest.nix")) {
|
|
|
|
for (auto & j : readDirectory(i.second))
|
|
|
|
if (j.name != "manifest.nix"
|
|
|
|
&& pathExists(fmt("%s/%s/default.nix", i.second, j.name)))
|
|
|
|
addEntry(j.name);
|
|
|
|
} else
|
|
|
|
addEntry(i.first);
|
2016-08-23 15:11:19 +00:00
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
vSourceExpr->attrs->sort();
|
2016-08-23 15:11:19 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
return vSourceExpr;
|
2016-08-23 15:11:19 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 17:02:56 +00:00
|
|
|
ref<EvalState> SourceExprCommand::getEvalState()
|
|
|
|
{
|
|
|
|
if (!evalState)
|
2017-10-24 10:45:11 +00:00
|
|
|
evalState = std::make_shared<EvalState>(searchPath, getStore());
|
2017-07-17 17:02:56 +00:00
|
|
|
return ref<EvalState>(evalState);
|
|
|
|
}
|
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildable Installable::toBuildable()
|
|
|
|
{
|
|
|
|
auto buildables = toBuildables();
|
|
|
|
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]);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
InstallableStorePath(ref<Store> store, const Path & storePath)
|
|
|
|
: store(store), storePath(store->parseStorePath(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
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables toBuildables() override
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2019-12-05 18:11:09 +00:00
|
|
|
std::map<std::string, StorePath> outputs;
|
|
|
|
outputs.insert_or_assign("out", storePath.clone());
|
|
|
|
Buildable b{
|
|
|
|
.drvPath = storePath.isDerivation() ? storePath.clone() : std::optional<StorePath>(),
|
|
|
|
.outputs = std::move(outputs)
|
|
|
|
};
|
|
|
|
Buildables bs;
|
|
|
|
bs.push_back(std::move(b));
|
|
|
|
return bs;
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
struct InstallableValue : Installable
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
SourceExprCommand & cmd;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
InstallableValue(SourceExprCommand & cmd) : cmd(cmd) { }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables toBuildables() override
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
auto state = cmd.getEvalState();
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
auto v = toValue(*state);
|
|
|
|
|
2017-10-24 10:45:11 +00:00
|
|
|
Bindings & autoArgs = *cmd.getAutoArgs(*state);
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
DrvInfos drvs;
|
|
|
|
getDerivations(*state, *v, "", autoArgs, drvs, false);
|
|
|
|
|
2017-07-14 15:10:13 +00:00
|
|
|
Buildables res;
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePathSet drvPaths;
|
2017-09-06 14:03:22 +00:00
|
|
|
|
|
|
|
for (auto & drv : drvs) {
|
2019-12-05 18:11:09 +00:00
|
|
|
Buildable b{.drvPath = state->store->parseStorePath(drv.queryDrvPath())};
|
|
|
|
drvPaths.insert(b.drvPath->clone());
|
2017-09-06 14:03:22 +00:00
|
|
|
|
|
|
|
auto outputName = drv.queryOutputName();
|
|
|
|
if (outputName == "")
|
2019-12-05 18:11:09 +00:00
|
|
|
throw Error("derivation '%s' lacks an 'outputName' attribute", state->store->printStorePath(*b.drvPath));
|
2017-09-06 14:03:22 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
b.outputs.emplace(outputName, state->store->parseStorePath(drv.queryOutPath()));
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
res.push_back(std::move(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hack to recognize .all: if all drvs have the same drvPath,
|
|
|
|
// merge the buildables.
|
|
|
|
if (drvPaths.size() == 1) {
|
2019-12-05 18:11:09 +00:00
|
|
|
Buildable b{.drvPath = drvPaths.begin()->clone()};
|
2017-09-06 14:03:22 +00:00
|
|
|
for (auto & b2 : res)
|
2019-12-05 18:11:09 +00:00
|
|
|
for (auto & output : b2.outputs)
|
|
|
|
b.outputs.insert_or_assign(output.first, output.second.clone());
|
|
|
|
Buildables bs;
|
|
|
|
bs.push_back(std::move(b));
|
|
|
|
return bs;
|
2017-09-06 14:03:22 +00:00
|
|
|
} else
|
|
|
|
return res;
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
2017-08-29 14:18:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InstallableExpr : InstallableValue
|
|
|
|
{
|
|
|
|
std::string text;
|
|
|
|
|
|
|
|
InstallableExpr(SourceExprCommand & cmd, const std::string & text)
|
|
|
|
: InstallableValue(cmd), text(text) { }
|
|
|
|
|
|
|
|
std::string what() override { return text; }
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
Value * toValue(EvalState & state) override
|
|
|
|
{
|
|
|
|
auto v = state.allocValue();
|
|
|
|
state.eval(state.parseExprFromString(text, absPath(".")), *v);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
struct InstallableAttrPath : InstallableValue
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
|
|
|
std::string attrPath;
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
InstallableAttrPath(SourceExprCommand & cmd, const std::string & attrPath)
|
|
|
|
: InstallableValue(cmd), attrPath(attrPath)
|
2017-04-25 09:20:37 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
std::string what() override { return attrPath; }
|
|
|
|
|
|
|
|
Value * toValue(EvalState & state) override
|
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
auto source = cmd.getSourceExpr(state);
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-10-24 10:45:11 +00:00
|
|
|
Bindings & autoArgs = *cmd.getAutoArgs(state);
|
2017-04-25 09:20:37 +00:00
|
|
|
|
|
|
|
Value * v = findAlongAttrPath(state, attrPath, autoArgs, *source);
|
|
|
|
state.forceValue(*v);
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// FIXME: extend
|
|
|
|
std::string attrRegex = R"([A-Za-z_][A-Za-z0-9-_+]*)";
|
|
|
|
static std::regex attrPathRegex(fmt(R"(%1%(\.%1%)*)", attrRegex));
|
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
static std::vector<std::shared_ptr<Installable>> parseInstallables(
|
2017-10-24 10:45:11 +00:00
|
|
|
SourceExprCommand & cmd, ref<Store> store, std::vector<std::string> ss, bool useDefaultInstallables)
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
|
|
|
std::vector<std::shared_ptr<Installable>> result;
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
if (ss.empty() && useDefaultInstallables) {
|
|
|
|
if (cmd.file == "")
|
|
|
|
cmd.file = ".";
|
2017-10-24 10:45:11 +00:00
|
|
|
ss = {""};
|
2017-04-25 13:18:05 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
for (auto & s : ss) {
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-07-04 13:38:23 +00:00
|
|
|
if (s.compare(0, 1, "(") == 0)
|
2017-08-29 14:18:00 +00:00
|
|
|
result.push_back(std::make_shared<InstallableExpr>(cmd, s));
|
2017-07-04 13:38:23 +00:00
|
|
|
|
|
|
|
else if (s.find("/") != std::string::npos) {
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
auto path = store->toStorePath(store->followLinksToStore(s));
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2018-06-13 16:04:22 +00:00
|
|
|
if (store->isStorePath(path))
|
2019-12-05 18:11:09 +00:00
|
|
|
result.push_back(std::make_shared<InstallableStorePath>(store, path));
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 13:28:35 +00:00
|
|
|
else if (s == "" || std::regex_match(s, attrPathRegex))
|
2017-08-29 14:18:00 +00:00
|
|
|
result.push_back(std::make_shared<InstallableAttrPath>(cmd, s));
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-04-25 09:20:37 +00:00
|
|
|
else
|
2017-07-30 11:27:57 +00:00
|
|
|
throw UsageError("don't know what to do with argument '%s'", s);
|
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
|
|
|
|
2017-09-10 13:58:30 +00:00
|
|
|
std::shared_ptr<Installable> parseInstallable(
|
|
|
|
SourceExprCommand & cmd, ref<Store> store, const std::string & installable,
|
|
|
|
bool useDefaultInstallables)
|
|
|
|
{
|
|
|
|
auto installables = parseInstallables(cmd, store, {installable}, false);
|
|
|
|
assert(installables.size() == 1);
|
|
|
|
return installables.front();
|
|
|
|
}
|
|
|
|
|
2018-02-09 15:42:32 +00:00
|
|
|
Buildables build(ref<Store> store, RealiseMode mode,
|
2017-09-10 13:58:30 +00:00
|
|
|
std::vector<std::shared_ptr<Installable>> installables)
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-14 18:14:55 +00:00
|
|
|
if (mode != Build)
|
2017-07-14 15:10:13 +00:00
|
|
|
settings.readOnlyMode = true;
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
Buildables buildables;
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
std::vector<StorePathWithOutputs> pathsToBuild;
|
2017-07-14 15:10:13 +00:00
|
|
|
|
2017-09-06 14:03:22 +00:00
|
|
|
for (auto & i : installables) {
|
|
|
|
for (auto & b : i->toBuildables()) {
|
2019-12-05 18:11:09 +00:00
|
|
|
if (b.drvPath) {
|
2017-09-10 13:58:30 +00:00
|
|
|
StringSet outputNames;
|
|
|
|
for (auto & output : b.outputs)
|
|
|
|
outputNames.insert(output.first);
|
2019-12-05 18:11:09 +00:00
|
|
|
pathsToBuild.push_back({*b.drvPath, outputNames});
|
2017-09-27 11:14:45 +00:00
|
|
|
} else
|
|
|
|
for (auto & output : b.outputs)
|
2019-12-05 18:11:09 +00:00
|
|
|
pathsToBuild.push_back({output.second.clone()});
|
2017-09-06 14:03:22 +00:00
|
|
|
buildables.push_back(std::move(b));
|
2017-07-14 15:10:13 +00:00
|
|
|
}
|
2017-09-06 14:03:22 +00:00
|
|
|
}
|
2016-02-09 20:34:24 +00:00
|
|
|
|
2017-07-14 12:23:38 +00:00
|
|
|
if (mode == DryRun)
|
2017-09-06 14:03:22 +00:00
|
|
|
printMissing(store, pathsToBuild, lvlError);
|
2017-07-14 12:23:38 +00:00
|
|
|
else if (mode == Build)
|
2017-09-06 14:03:22 +00:00
|
|
|
store->buildPaths(pathsToBuild);
|
|
|
|
|
|
|
|
return buildables;
|
|
|
|
}
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePathSet toStorePaths(ref<Store> store, RealiseMode mode,
|
2017-09-10 13:58:30 +00:00
|
|
|
std::vector<std::shared_ptr<Installable>> installables)
|
2017-09-06 14:03:22 +00:00
|
|
|
{
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePathSet outPaths;
|
2017-09-06 14:03:22 +00:00
|
|
|
|
2018-02-09 15:42:32 +00:00
|
|
|
for (auto & b : build(store, mode, installables))
|
2017-09-06 14:03:22 +00:00
|
|
|
for (auto & output : b.outputs)
|
2019-12-05 18:11:09 +00:00
|
|
|
outPaths.insert(output.second.clone());
|
2017-04-25 09:20:37 +00:00
|
|
|
|
2017-04-25 14:19:22 +00:00
|
|
|
return outPaths;
|
2017-04-25 09:20:37 +00:00
|
|
|
}
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePath toStorePath(ref<Store> store, RealiseMode mode,
|
2017-09-10 13:58:30 +00:00
|
|
|
std::shared_ptr<Installable> installable)
|
|
|
|
{
|
|
|
|
auto paths = toStorePaths(store, mode, {installable});
|
|
|
|
|
|
|
|
if (paths.size() != 1)
|
|
|
|
throw Error("argument '%s' should evaluate to one store path", installable->what());
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
return paths.begin()->clone();
|
2017-09-10 13:58:30 +00:00
|
|
|
}
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
StorePathSet toDerivations(ref<Store> store,
|
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
|
|
|
std::vector<std::shared_ptr<Installable>> installables, bool useDeriver)
|
|
|
|
{
|
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
|
|
|
|
|
|
|
for (auto & i : installables)
|
|
|
|
for (auto & b : i->toBuildables()) {
|
2019-12-05 18:11:09 +00:00
|
|
|
if (!b.drvPath) {
|
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 (!useDeriver)
|
|
|
|
throw Error("argument '%s' did not evaluate to a derivation", i->what());
|
|
|
|
for (auto & output : b.outputs) {
|
|
|
|
auto derivers = store->queryValidDerivers(output.second);
|
|
|
|
if (derivers.empty())
|
|
|
|
throw Error("'%s' does not have a known deriver", i->what());
|
|
|
|
// FIXME: use all derivers?
|
2019-12-05 18:11:09 +00:00
|
|
|
drvPaths.insert(derivers.begin()->clone());
|
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
|
|
|
}
|
|
|
|
} else
|
2019-12-05 18:11:09 +00:00
|
|
|
drvPaths.insert(b.drvPath->clone());
|
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;
|
|
|
|
}
|
|
|
|
|
2017-04-25 10:06:32 +00:00
|
|
|
void InstallablesCommand::prepare()
|
2017-04-25 09:20:37 +00:00
|
|
|
{
|
2017-08-29 14:18:00 +00:00
|
|
|
installables = parseInstallables(*this, getStore(), _installables, useDefaultInstallables());
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstallableCommand::prepare()
|
|
|
|
{
|
2017-09-10 13:58:30 +00:00
|
|
|
installable = parseInstallable(*this, getStore(), _installable, false);
|
2016-02-09 20:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|