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-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
|
|
|
{
|
|
|
|
std::string flakeUri = ".";
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FlakeCommand()
|
|
|
|
{
|
|
|
|
expectArg("flake-uri", &flakeUri, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
FlakeRef getFlakeRef()
|
|
|
|
{
|
|
|
|
if (flakeUri.find('/') != std::string::npos || flakeUri == ".")
|
|
|
|
return FlakeRef(flakeUri, true);
|
|
|
|
else
|
|
|
|
return FlakeRef(flakeUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
Flake getFlake()
|
|
|
|
{
|
|
|
|
auto evalState = getEvalState();
|
2019-05-29 16:31:07 +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 name() override
|
|
|
|
{
|
|
|
|
return "list";
|
|
|
|
}
|
|
|
|
|
|
|
|
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-05-28 21:34:02 +03:00
|
|
|
std::cout << fmt("URI: %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)
|
|
|
|
{
|
|
|
|
j["uri"] = sourceInfo.resolvedRef.to_string();
|
|
|
|
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("ID: %s\n", flake.id);
|
|
|
|
std::cout << fmt("Description: %s\n", flake.description);
|
|
|
|
std::cout << fmt("Epoch: %s\n", flake.epoch);
|
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["id"] = flake.id;
|
|
|
|
j["description"] = flake.description;
|
|
|
|
j["epoch"] = flake.epoch;
|
|
|
|
sourceInfoToJson(flake.sourceInfo, j);
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
|
2019-06-04 21:56:13 +03:00
|
|
|
#if 0
|
2019-05-28 15:01:57 +03:00
|
|
|
static void printNonFlakeInfo(const NonFlake & nonFlake)
|
|
|
|
{
|
2019-05-28 21:34:02 +03:00
|
|
|
std::cout << fmt("ID: %s\n", nonFlake.alias);
|
2019-05-28 15:01:57 +03:00
|
|
|
printSourceInfo(nonFlake.sourceInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nlohmann::json nonFlakeToJson(const NonFlake & nonFlake)
|
|
|
|
{
|
|
|
|
nlohmann::json j;
|
|
|
|
j["id"] = nonFlake.alias;
|
|
|
|
sourceInfoToJson(nonFlake.sourceInfo, j);
|
|
|
|
return j;
|
2019-03-21 10:30:16 +02:00
|
|
|
}
|
|
|
|
|
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 name() override
|
|
|
|
{
|
|
|
|
return "deps";
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
evalState->addRegistryOverrides(registryOverrides);
|
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 & nonFlake : resFlake.nonFlakeDeps)
|
2019-05-28 15:01:57 +03:00
|
|
|
printNonFlakeInfo(nonFlake);
|
2019-03-29 17:18:25 +02:00
|
|
|
|
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 name() override
|
|
|
|
{
|
|
|
|
return "update";
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
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::function<void(const std::string & name, Value & vProvide)> callback)
|
|
|
|
{
|
|
|
|
state.forceAttrs(vFlake);
|
|
|
|
|
2019-05-30 00:09:23 +03:00
|
|
|
auto vOutputs = (*vFlake.attrs->get(state.symbols.create("outputs")))->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-05-30 00:09:23 +03:00
|
|
|
state.forceAttrs(*vOutputs);
|
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
|
|
|
for (auto & attr : *vOutputs->attrs)
|
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
|
|
|
callback(attr.name, *attr.value);
|
|
|
|
}
|
|
|
|
|
2019-05-16 23:48:16 +03:00
|
|
|
struct CmdFlakeInfo : FlakeCommand, MixJSON
|
2019-02-21 07:53:01 +02:00
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "info";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list info about a given flake";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
2019-05-16 23:48:16 +03:00
|
|
|
auto flake = getFlake();
|
2019-05-28 14:14:27 +03:00
|
|
|
stopProgressBar();
|
2019-02-21 07:53:01 +02: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
|
|
|
if (json) {
|
|
|
|
auto json = flakeToJson(flake);
|
2019-05-29 18:25:41 +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
|
|
|
auto state = getEvalState();
|
2019-06-17 18:31:34 +03:00
|
|
|
auto flake = resolveFlake();
|
2019-05-29 18:25:41 +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
|
|
|
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,
|
|
|
|
[&](const std::string & name, Value & vProvide) {
|
|
|
|
auto provide = nlohmann::json::object();
|
|
|
|
|
|
|
|
if (name == "checks" || name == "packages") {
|
|
|
|
state->forceAttrs(vProvide);
|
|
|
|
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;
|
|
|
|
} else
|
|
|
|
printFlakeInfo(flake);
|
|
|
|
}
|
|
|
|
};
|
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 name() override
|
|
|
|
{
|
|
|
|
return "check";
|
|
|
|
}
|
|
|
|
|
|
|
|
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-05-29 21:57:08 +03:00
|
|
|
auto checkDerivation = [&](const std::string & attrPath, Value & v) {
|
|
|
|
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-06-17 18:59:57 +03:00
|
|
|
e.addPrefix(fmt("while checking the derivation '" ANSI_BOLD "%s" ANSI_NORMAL "':\n", attrPath));
|
2019-05-29 21:57:08 +03:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-29 18:25:41 +03:00
|
|
|
PathSet drvPaths;
|
|
|
|
|
2019-06-17 18:59:57 +03:00
|
|
|
auto checkApp = [&](const std::string & attrPath, Value & v) {
|
|
|
|
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) {
|
|
|
|
e.addPrefix(fmt("while checking the app definition '" ANSI_BOLD "%s" ANSI_NORMAL "':\n", attrPath));
|
|
|
|
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,
|
|
|
|
[&](const std::string & name, Value & vProvide) {
|
|
|
|
Activity act(*logger, lvlChatty, actUnknown,
|
|
|
|
fmt("checking flake output '%s'", name));
|
|
|
|
|
|
|
|
try {
|
|
|
|
state->forceValue(vProvide);
|
|
|
|
|
|
|
|
if (name == "checks") {
|
|
|
|
state->forceAttrs(vProvide);
|
2019-05-29 21:57:08 +03:00
|
|
|
for (auto & aCheck : *vProvide.attrs)
|
|
|
|
drvPaths.insert(checkDerivation(
|
|
|
|
name + "." + (std::string) aCheck.name, *aCheck.value));
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (name == "packages") {
|
|
|
|
state->forceAttrs(vProvide);
|
|
|
|
for (auto & aCheck : *vProvide.attrs)
|
|
|
|
checkDerivation(
|
|
|
|
name + "." + (std::string) aCheck.name, *aCheck.value);
|
2019-05-29 18:25:41 +03:00
|
|
|
}
|
|
|
|
|
2019-06-17 18:59:57 +03:00
|
|
|
else if (name == "apps") {
|
|
|
|
state->forceAttrs(vProvide);
|
|
|
|
for (auto & aCheck : *vProvide.attrs)
|
|
|
|
checkApp(
|
|
|
|
name + "." + (std::string) aCheck.name, *aCheck.value);
|
|
|
|
}
|
|
|
|
|
2019-05-29 21:57:08 +03:00
|
|
|
else if (name == "defaultPackage" || name == "devShell")
|
|
|
|
checkDerivation(name, vProvide);
|
|
|
|
|
2019-06-17 18:59:57 +03:00
|
|
|
else if (name == "defaultApp")
|
|
|
|
checkApp(name, vProvide);
|
|
|
|
|
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;
|
|
|
|
FlakeUri uri;
|
2019-03-10 08:05:05 +02:00
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "add";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "upsert flake in user flake registry";
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdFlakeAdd()
|
|
|
|
{
|
2019-04-08 20:03:00 +03:00
|
|
|
expectArg("alias", &alias);
|
|
|
|
expectArg("flake-uri", &uri);
|
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);
|
|
|
|
userRegistry->entries.insert_or_assign(aliasRef, FlakeRef(uri));
|
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 name() override
|
|
|
|
{
|
|
|
|
return "remove";
|
|
|
|
}
|
|
|
|
|
|
|
|
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 name() override
|
|
|
|
{
|
|
|
|
return "pin";
|
|
|
|
}
|
|
|
|
|
|
|
|
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-05-28 14:12:43 +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-05-28 14:12:43 +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 name() override
|
|
|
|
{
|
|
|
|
return "init";
|
|
|
|
}
|
|
|
|
|
|
|
|
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 name() override
|
|
|
|
{
|
|
|
|
return "clone";
|
|
|
|
}
|
|
|
|
|
|
|
|
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-02-21 07:53:01 +02:00
|
|
|
: MultiCommand({make_ref<CmdFlakeList>()
|
2019-03-10 08:05:05 +02:00
|
|
|
, make_ref<CmdFlakeUpdate>()
|
2019-02-21 07:53:01 +02:00
|
|
|
, make_ref<CmdFlakeInfo>()
|
2019-05-29 18:25:41 +03:00
|
|
|
, make_ref<CmdFlakeCheck>()
|
2019-06-04 20:10:35 +03:00
|
|
|
//, make_ref<CmdFlakeDeps>()
|
2019-03-10 08:05:05 +02:00
|
|
|
, make_ref<CmdFlakeAdd>()
|
|
|
|
, make_ref<CmdFlakeRemove>()
|
2019-04-09 00:36:12 +03:00
|
|
|
, make_ref<CmdFlakePin>()
|
|
|
|
, make_ref<CmdFlakeInit>()
|
2019-03-21 10:30:16 +02:00
|
|
|
, make_ref<CmdFlakeClone>()
|
2019-04-09 00:36:12 +03:00
|
|
|
})
|
2018-11-29 20:18:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "flake";
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static RegisterCommand r1(make_ref<CmdFlake>());
|