query
On this page

oldestSupportedReleaseIsAtLeast

lib.oldestSupportedReleaseIsAtLeast

Docs pulled from | This Revision | 22 minutes 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.

(lib.trivial.isInOldestRelease)

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

oldestSupportedReleaseIsAtLeast =
    release:
      release <= lib.trivial.oldestSupportedRelease;