query
On this page

dontCheckIf

pkgs.haskell.lib.dontCheckIf

Docs pulled from | This Revision | 15 minutes ago


Nixpkgs manual

The dontCheckIf variant sets doCheck = false if the condition applies. In any other case the previously set/default value is used. This prevents accidentally re-enabling tests in a later override.

Noogle detected

Implementation

The following is the current implementation of this function.

dontCheckIf = drv: condition: compose.dontCheckIf condition drv;