mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
15f7fa59be
Adds a new boolean structured attribute `outputChecks.<output>.unsafeDiscardReferences` which disables scanning an output for runtime references. __structuredAttrs = true; outputChecks.out.unsafeDiscardReferences = true; This is useful when creating filesystem images containing their own embedded Nix store: they are self-contained blobs of data with no runtime dependencies. Setting this attribute requires the experimental feature `discard-references` to be enabled.
83 lines
2.4 KiB
C++
83 lines
2.4 KiB
C++
#include "experimental-features.hh"
|
|
#include "util.hh"
|
|
|
|
#include "nlohmann/json.hpp"
|
|
|
|
namespace nix {
|
|
|
|
std::map<ExperimentalFeature, std::string> stringifiedXpFeatures = {
|
|
{ Xp::CaDerivations, "ca-derivations" },
|
|
{ Xp::ImpureDerivations, "impure-derivations" },
|
|
{ Xp::Flakes, "flakes" },
|
|
{ Xp::NixCommand, "nix-command" },
|
|
{ Xp::RecursiveNix, "recursive-nix" },
|
|
{ Xp::NoUrlLiterals, "no-url-literals" },
|
|
{ Xp::FetchClosure, "fetch-closure" },
|
|
{ Xp::ReplFlake, "repl-flake" },
|
|
{ Xp::AutoAllocateUids, "auto-allocate-uids" },
|
|
{ Xp::Cgroups, "cgroups" },
|
|
{ Xp::DiscardReferences, "discard-references" },
|
|
};
|
|
|
|
const std::optional<ExperimentalFeature> parseExperimentalFeature(const std::string_view & name)
|
|
{
|
|
using ReverseXpMap = std::map<std::string_view, ExperimentalFeature>;
|
|
|
|
static auto reverseXpMap = []()
|
|
{
|
|
auto reverseXpMap = std::make_unique<ReverseXpMap>();
|
|
for (auto & [feature, name] : stringifiedXpFeatures)
|
|
(*reverseXpMap)[name] = feature;
|
|
return reverseXpMap;
|
|
}();
|
|
|
|
if (auto feature = get(*reverseXpMap, name))
|
|
return *feature;
|
|
else
|
|
return std::nullopt;
|
|
}
|
|
|
|
std::string_view showExperimentalFeature(const ExperimentalFeature feature)
|
|
{
|
|
const auto ret = get(stringifiedXpFeatures, feature);
|
|
assert(ret);
|
|
return *ret;
|
|
}
|
|
|
|
std::set<ExperimentalFeature> parseFeatures(const std::set<std::string> & rawFeatures)
|
|
{
|
|
std::set<ExperimentalFeature> res;
|
|
for (auto & rawFeature : rawFeatures) {
|
|
if (auto feature = parseExperimentalFeature(rawFeature))
|
|
res.insert(*feature);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
MissingExperimentalFeature::MissingExperimentalFeature(ExperimentalFeature feature)
|
|
: Error("experimental Nix feature '%1%' is disabled; use '--extra-experimental-features %1%' to override", showExperimentalFeature(feature))
|
|
, missingFeature(feature)
|
|
{}
|
|
|
|
std::ostream & operator <<(std::ostream & str, const ExperimentalFeature & feature)
|
|
{
|
|
return str << showExperimentalFeature(feature);
|
|
}
|
|
|
|
void to_json(nlohmann::json & j, const ExperimentalFeature & feature)
|
|
{
|
|
j = showExperimentalFeature(feature);
|
|
}
|
|
|
|
void from_json(const nlohmann::json & j, ExperimentalFeature & feature)
|
|
{
|
|
const std::string input = j;
|
|
const auto parsed = parseExperimentalFeature(input);
|
|
|
|
if (parsed.has_value())
|
|
feature = *parsed;
|
|
else
|
|
throw Error("Unknown experimental feature '%s' in JSON input", input);
|
|
}
|
|
|
|
}
|