removeConfigureFlag
pkgs.haskell.lib.removeConfigureFlag
Docs pulled from | This Revision | 14 minutes ago
removeConfigureFlag drv x is a Haskell package like drv, but with all cabal configure arguments that are equal to x removed.
> haskell.lib.removeConfigureFlag haskellPackages.servant "--verbose"
Inputs
drv
-
1. Function argument
x
-
2. Function argument
Noogle detected
Implementation
The following is the current implementation of this function.
removeConfigureFlag = drv: x: compose.removeConfigureFlag x drv;