Merge remote-tracking branch 'tweag/automatedUpdate' into flakes

This commit is contained in:
Eelco Dolstra 2019-04-15 12:11:16 +02:00
commit a12cd53567
3 changed files with 22 additions and 7 deletions

View file

@ -10,7 +10,7 @@ struct CmdBuild : MixDryRun, InstallablesCommand
{
Path outLink = "result";
bool updateLock = true;
bool update = true;
CmdBuild()
{
@ -29,7 +29,7 @@ struct CmdBuild : MixDryRun, InstallablesCommand
mkFlag()
.longName("no-update")
.description("don't update the lock file")
.set(&updateLock, false);
.set(&update, false);
}
std::string name() override
@ -77,11 +77,12 @@ struct CmdBuild : MixDryRun, InstallablesCommand
}
}
// FlakeUri flakeUri = "";
// if(updateLock)
// for (uint i = 0; i < installables.size(); i++)
// // if (auto flakeUri = installableToFlakeUri)
// updateLockFile(*evalState, flakeUri);
if (update)
for (auto installable : installables) {
auto flakeUri = installable->installableToFlakeUri();
if (flakeUri)
updateLockFile(*evalState, *flakeUri);
}
}
};

View file

@ -3,6 +3,7 @@
#include "args.hh"
#include "primops/flake.hh"
#include "common-eval-args.hh"
#include <optional>
namespace nix {
@ -66,6 +67,11 @@ struct Installable
Buildable toBuildable();
virtual std::optional<std::string> installableToFlakeUri()
{
return std::nullopt;
}
virtual Value * toValue(EvalState & state)
{
throw Error("argument '%s' cannot be evaluated", what());

View file

@ -175,6 +175,14 @@ struct InstallableFlake : InstallableValue
state.forceValue(*v);
return v;
}
std::optional<std::string> installableToFlakeUri() override
{
if (std::get_if<FlakeRef::IsPath>(&flakeRef.data))
return flakeRef.to_string();
else
return std::nullopt;
}
};
// FIXME: extend