Remove the 'ca-references' feature check

Fixes #3422.
Fixes #4425.
This commit is contained in:
Eelco Dolstra 2021-09-14 12:31:07 +02:00
parent e664270c2b
commit 761ac9d584

View file

@ -1244,11 +1244,6 @@ void LocalStore::addToStore(const ValidPathInfo & info, Source & source,
deletePath(realPath);
// text hashing has long been allowed to have non-self-references because it is used for drv files.
bool refersToSelf = info.references.count(info.path) > 0;
if (info.ca.has_value() && !info.references.empty() && !(std::holds_alternative<TextHash>(*info.ca) && !refersToSelf))
settings.requireExperimentalFeature("ca-references");
/* While restoring the path from the NAR, compute the hash
of the NAR. */
HashSink hashSink(htSHA256);