2019-02-21 07:53:01 +02:00
|
|
|
#include "eval.hh"
|
2016-02-09 22:34:24 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2020-03-30 20:14:17 +03:00
|
|
|
struct CmdBuild : InstallablesCommand, MixDryRun, MixProfile
|
2016-02-09 22:34:24 +02:00
|
|
|
{
|
2017-09-06 17:20:34 +03:00
|
|
|
Path outLink = "result";
|
|
|
|
|
2016-02-09 22:34:24 +02:00
|
|
|
CmdBuild()
|
|
|
|
{
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "out-link",
|
|
|
|
.shortName = 'o',
|
|
|
|
.description = "path of the symlink to the build result",
|
|
|
|
.labels = {"path"},
|
|
|
|
.handler = {&outLink},
|
|
|
|
});
|
2017-09-06 17:20:34 +03:00
|
|
|
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "no-link",
|
|
|
|
.description = "do not create a symlink to the build result",
|
|
|
|
.handler = {&outLink, Path("")},
|
|
|
|
});
|
2016-02-09 22:34:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "build a derivation or fetch a store path";
|
|
|
|
}
|
|
|
|
|
2017-09-07 21:14:04 +03:00
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
Example{
|
|
|
|
"To build and run GNU Hello from NixOS 17.03:",
|
|
|
|
"nix build -f channel:nixos-17.03 hello; ./result/bin/hello"
|
|
|
|
},
|
|
|
|
Example{
|
|
|
|
"To build the build.x86_64-linux attribute from release.nix:",
|
|
|
|
"nix build -f release.nix build.x86_64-linux"
|
|
|
|
},
|
2019-07-12 16:32:17 +03:00
|
|
|
Example{
|
|
|
|
"To make a profile point at GNU Hello:",
|
2020-04-01 00:55:07 +03:00
|
|
|
"nix build --profile /tmp/profile nixpkgs#hello"
|
2019-07-12 16:32:17 +03:00
|
|
|
},
|
2017-09-07 21:14:04 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-02-09 22:34:24 +02:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
2018-02-09 17:42:32 +02:00
|
|
|
auto buildables = build(store, dryRun ? DryRun : Build, installables);
|
2016-02-09 22:34:24 +02:00
|
|
|
|
2018-02-07 22:58:38 +02:00
|
|
|
if (dryRun) return;
|
|
|
|
|
2019-07-12 16:32:17 +03:00
|
|
|
if (outLink != "") {
|
|
|
|
for (size_t i = 0; i < buildables.size(); ++i) {
|
|
|
|
for (auto & output : buildables[i].outputs)
|
2017-09-06 17:20:34 +03:00
|
|
|
if (auto store2 = store.dynamic_pointer_cast<LocalFSStore>()) {
|
|
|
|
std::string symlink = outLink;
|
|
|
|
if (i) symlink += fmt("-%d", i);
|
|
|
|
if (output.first != "out") symlink += fmt("-%s", output.first);
|
|
|
|
store2->addPermRoot(output.second, absPath(symlink), true);
|
|
|
|
}
|
2019-07-12 16:32:17 +03:00
|
|
|
}
|
2017-09-06 17:03:22 +03:00
|
|
|
}
|
2019-07-12 16:32:17 +03:00
|
|
|
|
|
|
|
updateProfile(buildables);
|
2016-02-09 22:34:24 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 17:01:35 +03:00
|
|
|
static auto r1 = registerCommand<CmdBuild>("build");
|