2019-02-12 19:23:11 +02:00
|
|
|
#include "primops/flake.hh"
|
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-02-27 20:54:18 +02:00
|
|
|
#include <nlohmann/json.hpp>
|
2018-11-29 20:18:36 +02:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
struct CmdFlakeList : StoreCommand, MixEvalArgs
|
|
|
|
{
|
|
|
|
std::string name() override
|
|
|
|
{
|
|
|
|
return "list";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "list available Nix flakes";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(nix::ref<nix::Store> store) override
|
|
|
|
{
|
|
|
|
auto evalState = std::make_shared<EvalState>(searchPath, store);
|
|
|
|
|
|
|
|
auto registry = evalState->getFlakeRegistry();
|
|
|
|
|
|
|
|
stopProgressBar();
|
|
|
|
|
|
|
|
for (auto & entry : registry.entries) {
|
2019-02-12 19:23:11 +02:00
|
|
|
std::cout << entry.first << " " << entry.second.ref.to_string() << "\n";
|
2018-11-29 20:18:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-21 07:53:01 +02:00
|
|
|
struct CmdFlakeUpdate : StoreCommand, GitRepoCommand, MixEvalArgs
|
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
|
|
|
|
{
|
|
|
|
auto evalState = std::make_shared<EvalState>(searchPath, store);
|
|
|
|
|
|
|
|
if (flakeUri == "") flakeUri = absPath("./flake.nix");
|
2019-02-21 07:53:01 +02:00
|
|
|
int result = updateLockFile(*evalState, flakeUri);
|
|
|
|
if (result == 1) {
|
|
|
|
std::cout << "You can only update local flakes, not flakes on GitHub.\n";
|
|
|
|
} else if (result == 2) {
|
|
|
|
std::cout << "You can only update local flakes, not flakes through their FlakeId.\n";
|
|
|
|
}
|
2019-02-21 07:53:01 +02: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
|
|
|
|
{
|
|
|
|
auto evalState = std::make_shared<EvalState>(searchPath, store);
|
|
|
|
nix::Flake flake = nix::getFlake(*evalState, FlakeRef(flakeUri));
|
2019-02-21 07:53:01 +02:00
|
|
|
if (json) {
|
2019-02-27 20:54:18 +02:00
|
|
|
nlohmann::json j;
|
|
|
|
j["location"] = flake.path;
|
|
|
|
j["description"] = flake.description;
|
|
|
|
std::cout << j.dump(4) << std::endl;
|
|
|
|
} else {
|
|
|
|
std::cout << "Description: " << flake.description << "\n";
|
2019-02-21 07:53:01 +02:00
|
|
|
std::cout << "Location: " << flake.path << "\n";
|
2019-02-27 20:54:18 +02:00
|
|
|
}
|
2019-02-21 07:53:01 +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>()
|
|
|
|
, make_ref<CmdFlakeInfo>()
|
|
|
|
, make_ref<CmdFlakeUpdate>()})
|
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>());
|