diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-03-31 19:58:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 19:58:35 +0200 |
commit | c9a29d0d92529338026190374d0e7e886f486e47 (patch) | |
tree | c406a7bab3da8fa6de21fd3bf31de0b4f12f7bef /src/libutil | |
parent | 0fe884991416f4a62bc31f69500a62bb8e175403 (diff) | |
parent | 6377442c983f4399d0a997238b898298e349fc1b (diff) |
Merge pull request #6227 from NixOS/impure-derivations-ng
Impure derivations
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/experimental-features.cc | 1 | ||||
-rw-r--r-- | src/libutil/experimental-features.hh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/experimental-features.cc b/src/libutil/experimental-features.cc index 01f318fa3..e033a4116 100644 --- a/src/libutil/experimental-features.cc +++ b/src/libutil/experimental-features.cc @@ -7,6 +7,7 @@ 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" }, diff --git a/src/libutil/experimental-features.hh b/src/libutil/experimental-features.hh index b5140dcfe..3a254b423 100644 --- a/src/libutil/experimental-features.hh +++ b/src/libutil/experimental-features.hh @@ -16,6 +16,7 @@ namespace nix { enum struct ExperimentalFeature { CaDerivations, + ImpureDerivations, Flakes, NixCommand, RecursiveNix, |