isInOldestRelease
lib.trivial.isInOldestRelease
Docs pulled from | This Revision | about 2 hours ago
Whether a feature is supported in all supported releases (at the time of
release branch-off, if applicable). See oldestSupportedRelease
.
Inputs
release
-
Release number of feature introduction as an integer, e.g. 2111 for 21.11. Set it to the upcoming release, matching the nixpkgs/.version file.
Noogle detected
Implementation
The following is the current implementation of this function.
oldestSupportedReleaseIsAtLeast =
release:
release <= lib.trivial.oldestSupportedRelease;