2018-11-29 20:18:36 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "progress-bar.hh"
|
|
|
|
#include "eval.hh"
|
2019-05-29 18:25:41 +03:00
|
|
|
#include "eval-inline.hh"
|
2019-06-05 17:51:54 +03:00
|
|
|
#include "flake/flake.hh"
|
2019-05-29 18:25:41 +03:00
|
|
|
#include "get-drvs.hh"
|
|
|
|
#include "store-api.hh"
|
2019-06-17 18:59:57 +03:00
|
|
|
#include "derivations.hh"
|
2019-09-19 21:15:42 +03:00
|
|
|
#include "attr-path.hh"
|
2019-04-16 15:10:05 +03:00
|
|
|
|
2019-02-27 20:54:18 +02:00
|
|
|
#include <nlohmann/json.hpp>
|
2019-03-29 17:18:25 +02:00
|
|
|
#include <queue>
|
2019-05-28 21:34:02 +03:00
|
|
|
#include <iomanip>
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
using namespace nix;
|
2019-05-29 16:31:07 +03:00
|
|
|
using namespace nix::flake;
|
2018-11-29 20:18:36 +02:00
|
|
|
|
2019-05-22 14:46:07 +03:00
|
|
|
class FlakeCommand : virtual Args, public EvalCommand, public MixFlakeOptions
|
2019-05-16 23:48:16 +03:00
|
|
|
{
|
2019-10-08 17:30:04 +03:00
|
|
|
std::string flakeUrl = ".";
|
2019-05-16 23:48:16 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FlakeCommand()
|
|
|
|
{
|
2019-10-08 17:30:04 +03:00
|
|
|
expectArg("flake-url", &flakeUrl, true);
|
2019-05-16 23:48:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
FlakeRef getFlakeRef()
|
|
|
|
{
|
2019-10-08 17:30:04 +03:00
|
|
|
if (flakeUrl.find('/') != std::string::npos || flakeUrl == ".")
|
|
|
|
return FlakeRef(flakeUrl, true);
|
2019-05-16 23:48:16 +03:00
|
|
|
else
|
2019-10-08 17:30:04 +03:00
|
|
|
return FlakeRef(flakeUrl);
|
2019-05-16 23:48:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Flake getFlake()
|
|
|
|
{
|
|
|
|
auto evalState = getEvalState();
|
2019-09-18 22:17:27 +03:00
|
|
|
return flake::getFlake(*evalState, getFlakeRef(), useRegistries);
|
2019-05-22 14:46:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ResolvedFlake resolveFlake()
|
|
|
|
{
|
2019-05-29 16:31:07 +03:00
|
|
|
return flake::resolveFlake(*getEvalState(), getFlakeRef(), getLockFileMode());
|
2019-05-16 23:48:16 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdFlakeList : EvalCommand
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list available Nix flakes";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto registries = getEvalState()->getFlakeRegistries();
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
stopProgressBar();
|
|
|
|
|
2019-04-30 12:03:31 +03:00
|
|
|
for (auto & entry : registries[FLAG_REGISTRY]->entries)
|
2019-04-17 15:03:04 +03:00
|
|
|
std::cout << entry.first.to_string() << " flags " << entry.second.to_string() << "\n";
|
|
|
|
|
2019-04-30 12:03:31 +03:00
|
|
|
for (auto & entry : registries[USER_REGISTRY]->entries)
|
2019-04-17 15:03:04 +03:00
|
|
|
std::cout << entry.first.to_string() << " user " << entry.second.to_string() << "\n";
|
|
|
|
|
2019-04-30 12:03:31 +03:00
|
|
|
for (auto & entry : registries[GLOBAL_REGISTRY]->entries)
|
2019-04-17 15:03:04 +03:00
|
|
|
std::cout << entry.first.to_string() << " global " << entry.second.to_string() << "\n";
|
2018-11-29 20:18:36 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-28 14:21:06 +03:00
|
|
|
static void printSourceInfo(const SourceInfo & sourceInfo)
|
|
|
|
{
|
2019-10-08 17:30:04 +03:00
|
|
|
std::cout << fmt("URL: %s\n", sourceInfo.resolvedRef.to_string());
|
2019-05-28 14:21:06 +03:00
|
|
|
if (sourceInfo.resolvedRef.ref)
|
2019-05-28 21:34:02 +03:00
|
|
|
std::cout << fmt("Branch: %s\n",*sourceInfo.resolvedRef.ref);
|
2019-05-28 14:21:06 +03:00
|
|
|
if (sourceInfo.resolvedRef.rev)
|
2019-05-28 21:34:02 +03:00
|
|
|
std::cout << fmt("Revision: %s\n", sourceInfo.resolvedRef.rev->to_string(Base16, false));
|
2019-05-28 14:21:06 +03:00
|
|
|
if (sourceInfo.revCount)
|
2019-05-28 21:34:02 +03:00
|
|
|
std::cout << fmt("Revisions: %s\n", *sourceInfo.revCount);
|
|
|
|
if (sourceInfo.lastModified)
|
|
|
|
std::cout << fmt("Last modified: %s\n",
|
|
|
|
std::put_time(std::localtime(&*sourceInfo.lastModified), "%F %T"));
|
|
|
|
std::cout << fmt("Path: %s\n", sourceInfo.storePath);
|
2019-05-28 14:21:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sourceInfoToJson(const SourceInfo & sourceInfo, nlohmann::json & j)
|
|
|
|
{
|
2019-10-08 17:30:04 +03:00
|
|
|
j["url"] = sourceInfo.resolvedRef.to_string();
|
2019-05-28 14:21:06 +03:00
|
|
|
if (sourceInfo.resolvedRef.ref)
|
|
|
|
j["branch"] = *sourceInfo.resolvedRef.ref;
|
|
|
|
if (sourceInfo.resolvedRef.rev)
|
|
|
|
j["revision"] = sourceInfo.resolvedRef.rev->to_string(Base16, false);
|
|
|
|
if (sourceInfo.revCount)
|
|
|
|
j["revCount"] = *sourceInfo.revCount;
|
2019-05-28 21:34:02 +03:00
|
|
|
if (sourceInfo.lastModified)
|
|
|
|
j["lastModified"] = *sourceInfo.lastModified;
|
2019-05-28 14:21:06 +03:00
|
|
|
j["path"] = sourceInfo.storePath;
|
|
|
|
}
|
|
|
|
|
2019-05-28 15:01:57 +03:00
|
|
|
static void printFlakeInfo(const Flake & flake)
|
2019-05-28 14:21:06 +03:00
|
|
|
{
|
2019-05-28 21:34:02 +03:00
|
|
|
std::cout << fmt("Description: %s\n", flake.description);
|
2019-07-11 14:54:53 +03:00
|
|
|
std::cout << fmt("Edition: %s\n", flake.edition);
|
2019-05-28 15:01:57 +03:00
|
|
|
printSourceInfo(flake.sourceInfo);
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
|
2019-05-28 15:01:57 +03:00
|
|
|
static nlohmann::json flakeToJson(const Flake & flake)
|
2019-05-28 14:21:06 +03:00
|
|
|
{
|
2019-05-28 15:01:57 +03:00
|
|
|
nlohmann::json j;
|
|
|
|
j["description"] = flake.description;
|
2019-07-11 14:54:53 +03:00
|
|
|
j["edition"] = flake.edition;
|
2019-05-28 15:01:57 +03:00
|
|
|
sourceInfoToJson(flake.sourceInfo, j);
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
|
2019-06-04 21:56:13 +03:00
|
|
|
#if 0
|
2019-05-22 14:46:07 +03:00
|
|
|
// FIXME: merge info CmdFlakeInfo?
|
2019-05-28 14:22:11 +03:00
|
|
|
struct CmdFlakeDeps : FlakeCommand
|
2019-03-21 10:30:16 +02:00
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list informaton about dependencies";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
2019-03-21 10:30:16 +02:00
|
|
|
|
2019-04-19 15:23:35 +03:00
|
|
|
std::queue<ResolvedFlake> todo;
|
2019-05-22 14:57:19 +03:00
|
|
|
todo.push(resolveFlake());
|
2019-03-21 10:30:16 +02:00
|
|
|
|
2019-05-28 14:14:27 +03:00
|
|
|
stopProgressBar();
|
|
|
|
|
2019-03-29 17:18:25 +02:00
|
|
|
while (!todo.empty()) {
|
2019-05-22 14:57:19 +03:00
|
|
|
auto resFlake = std::move(todo.front());
|
2019-03-29 17:18:25 +02:00
|
|
|
todo.pop();
|
|
|
|
|
2019-05-22 14:57:19 +03:00
|
|
|
for (auto & info : resFlake.flakeDeps) {
|
2019-05-28 15:01:57 +03:00
|
|
|
printFlakeInfo(info.second.flake);
|
2019-05-14 12:34:45 +03:00
|
|
|
todo.push(info.second);
|
2019-05-22 14:57:19 +03:00
|
|
|
}
|
2019-03-29 17:18:25 +02:00
|
|
|
}
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
};
|
2019-06-04 20:10:35 +03:00
|
|
|
#endif
|
2019-03-21 10:30:16 +02:00
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeUpdate : FlakeCommand
|
2019-02-21 07:53:01 +02:00
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "update flake lock file";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
|
|
|
|
|
|
|
auto flakeRef = getFlakeRef();
|
2019-02-21 07:53:01 +02:00
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
if (std::get_if<FlakeRef::IsPath>(&flakeRef.data))
|
|
|
|
updateLockFile(*evalState, flakeRef, true);
|
|
|
|
else
|
|
|
|
throw Error("cannot update lockfile of flake '%s'", flakeRef);
|
2019-02-21 07:53:01 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-30 00:09:23 +03:00
|
|
|
static void enumerateOutputs(EvalState & state, Value & vFlake,
|
2019-09-10 16:25:10 +03:00
|
|
|
std::function<void(const std::string & name, Value & vProvide, const Pos & pos)> callback)
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
{
|
|
|
|
state.forceAttrs(vFlake);
|
|
|
|
|
2019-09-22 22:53:01 +03:00
|
|
|
auto aOutputs = vFlake.attrs->get(state.symbols.create("outputs"));
|
|
|
|
assert(aOutputs);
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
|
2019-09-22 22:53:01 +03:00
|
|
|
state.forceAttrs(*(*aOutputs)->value);
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
|
2019-09-22 22:53:01 +03:00
|
|
|
for (auto & attr : *((*aOutputs)->value->attrs))
|
2019-09-10 16:25:10 +03:00
|
|
|
callback(attr.name, *attr.value, *attr.pos);
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
}
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeInfo : FlakeCommand, MixJSON
|
2019-02-21 07:53:01 +02:00
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list info about a given flake";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
if (json) {
|
|
|
|
auto state = getEvalState();
|
2019-06-17 18:31:34 +03:00
|
|
|
auto flake = resolveFlake();
|
2019-05-29 18:25:41 +03:00
|
|
|
|
2019-09-22 22:53:01 +03:00
|
|
|
auto json = flakeToJson(flake.flake);
|
|
|
|
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
auto vFlake = state->allocValue();
|
|
|
|
flake::callFlake(*state, flake, *vFlake);
|
2019-05-29 18:25:41 +03:00
|
|
|
|
2019-05-30 00:09:23 +03:00
|
|
|
auto outputs = nlohmann::json::object();
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
|
2019-05-30 00:09:23 +03:00
|
|
|
enumerateOutputs(*state,
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
*vFlake,
|
2019-09-10 16:25:10 +03:00
|
|
|
[&](const std::string & name, Value & vProvide, const Pos & pos) {
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
auto provide = nlohmann::json::object();
|
|
|
|
|
|
|
|
if (name == "checks" || name == "packages") {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceAttrs(vProvide, pos);
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
for (auto & aCheck : *vProvide.attrs)
|
|
|
|
provide[aCheck.name] = nlohmann::json::object();
|
|
|
|
}
|
|
|
|
|
2019-05-30 00:09:23 +03:00
|
|
|
outputs[name] = provide;
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
});
|
|
|
|
|
2019-05-30 00:09:23 +03:00
|
|
|
json["outputs"] = std::move(outputs);
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
|
|
|
|
std::cout << json.dump() << std::endl;
|
2019-09-22 22:53:01 +03:00
|
|
|
} else {
|
|
|
|
auto flake = getFlake();
|
|
|
|
stopProgressBar();
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
printFlakeInfo(flake);
|
2019-09-22 22:53:01 +03:00
|
|
|
}
|
nix flake info --json: List the "provides"
It also lists the contents of "checks" and "packages".
For example:
$ nix flake info --json | jq
{
"branch": "HEAD",
"description": "The purely functional package manager",
"epoch": 2019,
"id": "nix",
"lastModified": 1559161142,
"path": "/nix/store/2w2qla8735dbxah8gai8r1nsbf5x4f5d-source",
"provides": {
"checks": {
"binaryTarball": {},
"nix-copy-closure": {},
"perlBindings": {},
"remoteBuilds": {},
"setuid": {}
},
"defaultPackage": {},
"devShell": {},
"hydraJobs": {},
"packages": {
"nix": {},
"nix-perl-bindings": {}
}
},
"revCount": 6955,
"revision": "8cb24e04e8b6cc60e2504733afe78e0eadafcd98",
"uri": "/home/eelco/Dev/nix"
}
Fixes #2820.
2019-05-29 23:17:08 +03:00
|
|
|
}
|
|
|
|
};
|
2019-05-29 18:25:41 +03:00
|
|
|
|
|
|
|
struct CmdFlakeCheck : FlakeCommand, MixJSON
|
|
|
|
{
|
|
|
|
bool build = true;
|
|
|
|
|
|
|
|
CmdFlakeCheck()
|
|
|
|
{
|
|
|
|
mkFlag()
|
|
|
|
.longName("no-build")
|
|
|
|
.description("do not build checks")
|
|
|
|
.set(&build, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "check whether the flake evaluates and run its tests";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-29 22:00:44 +03:00
|
|
|
settings.readOnlyMode = !build;
|
|
|
|
|
2019-05-29 18:25:41 +03:00
|
|
|
auto state = getEvalState();
|
|
|
|
auto flake = resolveFlake();
|
|
|
|
|
2019-09-10 16:25:10 +03:00
|
|
|
auto checkDerivation = [&](const std::string & attrPath, Value & v, const Pos & pos) {
|
2019-05-29 21:57:08 +03:00
|
|
|
try {
|
|
|
|
auto drvInfo = getDerivation(*state, v, false);
|
|
|
|
if (!drvInfo)
|
|
|
|
throw Error("flake attribute '%s' is not a derivation", attrPath);
|
|
|
|
// FIXME: check meta attributes
|
|
|
|
return drvInfo->queryDrvPath();
|
|
|
|
} catch (Error & e) {
|
2019-09-10 16:25:10 +03:00
|
|
|
e.addPrefix(fmt("while checking the derivation '" ANSI_BOLD "%s" ANSI_NORMAL "' at %s:\n", attrPath, pos));
|
2019-05-29 21:57:08 +03:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-29 18:25:41 +03:00
|
|
|
PathSet drvPaths;
|
|
|
|
|
2019-09-10 16:25:10 +03:00
|
|
|
auto checkApp = [&](const std::string & attrPath, Value & v, const Pos & pos) {
|
2019-06-17 18:59:57 +03:00
|
|
|
try {
|
|
|
|
auto app = App(*state, v);
|
|
|
|
for (auto & i : app.context) {
|
|
|
|
auto [drvPath, outputName] = decodeContext(i);
|
|
|
|
if (!outputName.empty() && nix::isDerivation(drvPath))
|
|
|
|
drvPaths.insert(drvPath + "!" + outputName);
|
|
|
|
}
|
|
|
|
} catch (Error & e) {
|
2019-09-10 16:25:10 +03:00
|
|
|
e.addPrefix(fmt("while checking the app definition '" ANSI_BOLD "%s" ANSI_NORMAL "' at %s:\n", attrPath, pos));
|
2019-06-17 18:59:57 +03:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-10 16:25:10 +03:00
|
|
|
auto checkOverlay = [&](const std::string & attrPath, Value & v, const Pos & pos) {
|
2019-09-10 15:52:22 +03:00
|
|
|
try {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceValue(v, pos);
|
2019-09-10 15:52:22 +03:00
|
|
|
if (v.type != tLambda || v.lambda.fun->matchAttrs || std::string(v.lambda.fun->arg) != "final")
|
|
|
|
throw Error("overlay does not take an argument named 'final'");
|
|
|
|
auto body = dynamic_cast<ExprLambda *>(v.lambda.fun->body);
|
|
|
|
if (!body || body->matchAttrs || std::string(body->arg) != "prev")
|
|
|
|
throw Error("overlay does not take an argument named 'prev'");
|
|
|
|
// FIXME: if we have a 'nixpkgs' input, use it to
|
|
|
|
// evaluate the overlay.
|
|
|
|
} catch (Error & e) {
|
2019-09-10 16:25:10 +03:00
|
|
|
e.addPrefix(fmt("while checking the overlay '" ANSI_BOLD "%s" ANSI_NORMAL "' at %s:\n", attrPath, pos));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
auto checkModule = [&](const std::string & attrPath, Value & v, const Pos & pos) {
|
|
|
|
try {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceValue(v, pos);
|
2019-09-10 16:25:10 +03:00
|
|
|
if (v.type == tLambda) {
|
|
|
|
if (!v.lambda.fun->matchAttrs || !v.lambda.fun->formals->ellipsis)
|
|
|
|
throw Error("module must match an open attribute set ('{ config, ... }')");
|
|
|
|
} else if (v.type == tAttrs) {
|
|
|
|
for (auto & attr : *v.attrs)
|
|
|
|
try {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceValue(*attr.value, *attr.pos);
|
2019-09-10 16:25:10 +03:00
|
|
|
} catch (Error & e) {
|
|
|
|
e.addPrefix(fmt("while evaluating the option '" ANSI_BOLD "%s" ANSI_NORMAL "' at %s:\n", attr.name, *attr.pos));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
throw Error("module must be a function or an attribute set");
|
|
|
|
// FIXME: if we have a 'nixpkgs' input, use it to
|
|
|
|
// check the module.
|
|
|
|
} catch (Error & e) {
|
|
|
|
e.addPrefix(fmt("while checking the NixOS module '" ANSI_BOLD "%s" ANSI_NORMAL "' at %s:\n", attrPath, pos));
|
2019-09-10 15:52:22 +03:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-10 18:39:55 +03:00
|
|
|
std::function<void(const std::string & attrPath, Value & v, const Pos & pos)> checkHydraJobs;
|
|
|
|
|
|
|
|
checkHydraJobs = [&](const std::string & attrPath, Value & v, const Pos & pos) {
|
|
|
|
try {
|
|
|
|
state->forceAttrs(v, pos);
|
|
|
|
|
|
|
|
if (state->isDerivation(v))
|
|
|
|
throw Error("jobset should not be a derivation at top-level");
|
|
|
|
|
|
|
|
for (auto & attr : *v.attrs) {
|
|
|
|
state->forceAttrs(*attr.value, *attr.pos);
|
|
|
|
if (!state->isDerivation(*attr.value))
|
|
|
|
checkHydraJobs(attrPath + "." + (std::string) attr.name,
|
|
|
|
*attr.value, *attr.pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (Error & e) {
|
|
|
|
e.addPrefix(fmt("while checking the Hydra jobset '" ANSI_BOLD "%s" ANSI_NORMAL "' at %s:\n", attrPath, pos));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-19 21:15:42 +03:00
|
|
|
auto checkNixOSConfiguration = [&](const std::string & attrPath, Value & v, const Pos & pos) {
|
|
|
|
try {
|
|
|
|
Activity act(*logger, lvlChatty, actUnknown,
|
|
|
|
fmt("checking NixOS configuration '%s'", attrPath));
|
|
|
|
Bindings & bindings(*state->allocBindings(0));
|
|
|
|
auto vToplevel = findAlongAttrPath(*state, "config.system.build.toplevel", bindings, v);
|
|
|
|
state->forceAttrs(*vToplevel, pos);
|
|
|
|
if (!state->isDerivation(*vToplevel))
|
|
|
|
throw Error("attribute 'config.system.build.toplevel' is not a derivation");
|
|
|
|
} catch (Error & e) {
|
|
|
|
e.addPrefix(fmt("while checking the NixOS configuration '" ANSI_BOLD "%s" ANSI_NORMAL "' at %s:\n", attrPath, pos));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-29 18:25:41 +03:00
|
|
|
{
|
|
|
|
Activity act(*logger, lvlInfo, actUnknown, "evaluating flake");
|
|
|
|
|
|
|
|
auto vFlake = state->allocValue();
|
|
|
|
flake::callFlake(*state, flake, *vFlake);
|
|
|
|
|
2019-05-30 00:09:23 +03:00
|
|
|
enumerateOutputs(*state,
|
2019-05-29 18:25:41 +03:00
|
|
|
*vFlake,
|
2019-09-10 16:25:10 +03:00
|
|
|
[&](const std::string & name, Value & vOutput, const Pos & pos) {
|
2019-05-29 18:25:41 +03:00
|
|
|
Activity act(*logger, lvlChatty, actUnknown,
|
|
|
|
fmt("checking flake output '%s'", name));
|
|
|
|
|
|
|
|
try {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceValue(vOutput, pos);
|
2019-05-29 18:25:41 +03:00
|
|
|
|
|
|
|
if (name == "checks") {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceAttrs(vOutput, pos);
|
2019-09-10 16:25:10 +03:00
|
|
|
for (auto & attr : *vOutput.attrs)
|
2019-05-29 21:57:08 +03:00
|
|
|
drvPaths.insert(checkDerivation(
|
2019-09-10 16:25:10 +03:00
|
|
|
name + "." + (std::string) attr.name, *attr.value, *attr.pos));
|
2019-05-29 21:57:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (name == "packages") {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceAttrs(vOutput, pos);
|
2019-09-10 16:25:10 +03:00
|
|
|
for (auto & attr : *vOutput.attrs)
|
2019-05-29 21:57:08 +03:00
|
|
|
checkDerivation(
|
2019-09-10 16:25:10 +03:00
|
|
|
name + "." + (std::string) attr.name, *attr.value, *attr.pos);
|
2019-05-29 18:25:41 +03:00
|
|
|
}
|
|
|
|
|
2019-06-17 18:59:57 +03:00
|
|
|
else if (name == "apps") {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceAttrs(vOutput, pos);
|
2019-09-10 16:25:10 +03:00
|
|
|
for (auto & attr : *vOutput.attrs)
|
2019-06-17 18:59:57 +03:00
|
|
|
checkApp(
|
2019-09-10 16:25:10 +03:00
|
|
|
name + "." + (std::string) attr.name, *attr.value, *attr.pos);
|
2019-06-17 18:59:57 +03:00
|
|
|
}
|
|
|
|
|
2019-05-29 21:57:08 +03:00
|
|
|
else if (name == "defaultPackage" || name == "devShell")
|
2019-09-10 16:25:10 +03:00
|
|
|
checkDerivation(name, vOutput, pos);
|
2019-05-29 21:57:08 +03:00
|
|
|
|
2019-06-17 18:59:57 +03:00
|
|
|
else if (name == "defaultApp")
|
2019-09-10 16:25:10 +03:00
|
|
|
checkApp(name, vOutput, pos);
|
2019-06-17 18:59:57 +03:00
|
|
|
|
2019-06-18 10:45:14 +03:00
|
|
|
else if (name == "legacyPackages")
|
|
|
|
// FIXME: do getDerivations?
|
|
|
|
;
|
|
|
|
|
2019-09-10 15:52:22 +03:00
|
|
|
else if (name == "overlay")
|
2019-09-10 16:25:10 +03:00
|
|
|
checkOverlay(name, vOutput, pos);
|
|
|
|
|
|
|
|
else if (name == "overlays") {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceAttrs(vOutput, pos);
|
2019-09-10 16:25:10 +03:00
|
|
|
for (auto & attr : *vOutput.attrs)
|
|
|
|
checkOverlay(name + "." + (std::string) attr.name,
|
|
|
|
*attr.value, *attr.pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (name == "nixosModule")
|
|
|
|
checkModule(name, vOutput, pos);
|
|
|
|
|
|
|
|
else if (name == "nixosModules") {
|
2019-09-10 18:39:55 +03:00
|
|
|
state->forceAttrs(vOutput, pos);
|
2019-09-10 16:25:10 +03:00
|
|
|
for (auto & attr : *vOutput.attrs)
|
|
|
|
checkModule(name + "." + (std::string) attr.name,
|
|
|
|
*attr.value, *attr.pos);
|
|
|
|
}
|
2019-09-10 15:52:22 +03:00
|
|
|
|
2019-09-19 21:15:42 +03:00
|
|
|
else if (name == "nixosConfigurations") {
|
|
|
|
state->forceAttrs(vOutput, pos);
|
|
|
|
for (auto & attr : *vOutput.attrs)
|
|
|
|
checkNixOSConfiguration(name + "." + (std::string) attr.name,
|
|
|
|
*attr.value, *attr.pos);
|
|
|
|
}
|
|
|
|
|
2019-09-10 18:39:55 +03:00
|
|
|
else if (name == "hydraJobs")
|
|
|
|
checkHydraJobs(name, vOutput, pos);
|
|
|
|
|
2019-06-17 19:05:32 +03:00
|
|
|
else
|
|
|
|
warn("unknown flake output '%s'", name);
|
|
|
|
|
2019-05-29 18:25:41 +03:00
|
|
|
} catch (Error & e) {
|
|
|
|
e.addPrefix(fmt("while checking flake output '" ANSI_BOLD "%s" ANSI_NORMAL "':\n", name));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-17 18:59:57 +03:00
|
|
|
if (build && !drvPaths.empty()) {
|
2019-05-29 18:25:41 +03:00
|
|
|
Activity act(*logger, lvlInfo, actUnknown, "running flake checks");
|
|
|
|
store->buildPaths(drvPaths);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-03-10 08:05:05 +02:00
|
|
|
struct CmdFlakeAdd : MixEvalArgs, Command
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeUri alias;
|
2019-10-08 17:30:04 +03:00
|
|
|
FlakeUri url;
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "upsert flake in user flake registry";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakeAdd()
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
expectArg("alias", &alias);
|
2019-10-08 17:30:04 +03:00
|
|
|
expectArg("flake-url", &url);
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeRef aliasRef(alias);
|
2019-03-10 08:05:05 +02:00
|
|
|
Path userRegistryPath = getUserRegistryPath();
|
|
|
|
auto userRegistry = readRegistry(userRegistryPath);
|
2019-04-08 20:03:00 +03:00
|
|
|
userRegistry->entries.erase(aliasRef);
|
2019-10-08 17:30:04 +03:00
|
|
|
userRegistry->entries.insert_or_assign(aliasRef, FlakeRef(url));
|
2019-03-10 08:05:05 +02:00
|
|
|
writeRegistry(*userRegistry, userRegistryPath);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdFlakeRemove : virtual Args, MixEvalArgs, Command
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeUri alias;
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "remove flake from user flake registry";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakeRemove()
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
expectArg("alias", &alias);
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
Path userRegistryPath = getUserRegistryPath();
|
|
|
|
auto userRegistry = readRegistry(userRegistryPath);
|
2019-04-08 20:03:00 +03:00
|
|
|
userRegistry->entries.erase(FlakeRef(alias));
|
2019-03-10 08:05:05 +02:00
|
|
|
writeRegistry(*userRegistry, userRegistryPath);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakePin : virtual Args, EvalCommand
|
2019-03-10 08:05:05 +02:00
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
FlakeUri alias;
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "pin flake require in user flake registry";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakePin()
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
expectArg("alias", &alias);
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
Path userRegistryPath = getUserRegistryPath();
|
|
|
|
FlakeRegistry userRegistry = *readRegistry(userRegistryPath);
|
2019-04-08 20:03:00 +03:00
|
|
|
auto it = userRegistry.entries.find(FlakeRef(alias));
|
2019-03-10 08:05:05 +02:00
|
|
|
if (it != userRegistry.entries.end()) {
|
2019-09-18 22:17:27 +03:00
|
|
|
it->second = getFlake(*evalState, it->second, true).sourceInfo.resolvedRef;
|
2019-03-10 08:05:05 +02:00
|
|
|
writeRegistry(userRegistry, userRegistryPath);
|
2019-04-16 09:21:52 +03:00
|
|
|
} else {
|
2019-05-22 23:56:46 +03:00
|
|
|
std::shared_ptr<FlakeRegistry> globalReg = evalState->getGlobalFlakeRegistry();
|
2019-04-16 09:21:52 +03:00
|
|
|
it = globalReg->entries.find(FlakeRef(alias));
|
|
|
|
if (it != globalReg->entries.end()) {
|
2019-09-18 22:17:27 +03:00
|
|
|
auto newRef = getFlake(*evalState, it->second, true).sourceInfo.resolvedRef;
|
2019-04-16 09:21:52 +03:00
|
|
|
userRegistry.entries.insert_or_assign(alias, newRef);
|
|
|
|
writeRegistry(userRegistry, userRegistryPath);
|
|
|
|
} else
|
|
|
|
throw Error("the flake alias '%s' does not exist in the user or global registry", alias);
|
|
|
|
}
|
2019-03-10 08:05:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-04-09 00:36:12 +03:00
|
|
|
struct CmdFlakeInit : virtual Args, Command
|
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "create a skeleton 'flake.nix' file in the current directory";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
Path flakeDir = absPath(".");
|
|
|
|
|
|
|
|
if (!pathExists(flakeDir + "/.git"))
|
|
|
|
throw Error("the directory '%s' is not a Git repository", flakeDir);
|
|
|
|
|
|
|
|
Path flakePath = flakeDir + "/flake.nix";
|
|
|
|
|
|
|
|
if (pathExists(flakePath))
|
|
|
|
throw Error("file '%s' already exists", flakePath);
|
|
|
|
|
|
|
|
writeFile(flakePath,
|
2019-04-09 00:39:38 +03:00
|
|
|
#include "flake-template.nix.gen.hh"
|
|
|
|
);
|
2019-04-09 00:36:12 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeClone : FlakeCommand
|
2019-03-21 10:30:16 +02:00
|
|
|
{
|
2019-05-22 14:46:07 +03:00
|
|
|
Path destDir;
|
2019-03-21 10:30:16 +02:00
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "clone flake repository";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakeClone()
|
|
|
|
{
|
2019-05-22 14:46:07 +03:00
|
|
|
expectArg("dest-dir", &destDir, true);
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto evalState = getEvalState();
|
2019-03-21 10:30:16 +02:00
|
|
|
|
|
|
|
Registries registries = evalState->getFlakeRegistries();
|
2019-05-22 14:46:07 +03:00
|
|
|
gitCloneFlake(getFlakeRef().to_string(), *evalState, registries, destDir);
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-29 20:18:36 +02:00
|
|
|
struct CmdFlake : virtual MultiCommand, virtual Command
|
|
|
|
{
|
|
|
|
CmdFlake()
|
2019-06-18 17:01:35 +03:00
|
|
|
: MultiCommand({
|
|
|
|
{"list", []() { return make_ref<CmdFlakeList>(); }},
|
|
|
|
{"update", []() { return make_ref<CmdFlakeUpdate>(); }},
|
|
|
|
{"info", []() { return make_ref<CmdFlakeInfo>(); }},
|
|
|
|
{"check", []() { return make_ref<CmdFlakeCheck>(); }},
|
|
|
|
{"add", []() { return make_ref<CmdFlakeAdd>(); }},
|
|
|
|
{"remove", []() { return make_ref<CmdFlakeRemove>(); }},
|
|
|
|
{"pin", []() { return make_ref<CmdFlakePin>(); }},
|
|
|
|
{"init", []() { return make_ref<CmdFlakeInit>(); }},
|
|
|
|
{"clone", []() { return make_ref<CmdFlakeClone>(); }},
|
|
|
|
})
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "manage Nix flakes";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
if (!command)
|
|
|
|
throw UsageError("'nix flake' requires a sub-command.");
|
|
|
|
command->run();
|
|
|
|
}
|
|
|
|
|
|
|
|
void printHelp(const string & programName, std::ostream & out) override
|
|
|
|
{
|
|
|
|
MultiCommand::printHelp(programName, out);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 17:01:35 +03:00
|
|
|
static auto r1 = registerCommand<CmdFlake>("flake");
|