query
On this page

appendConfigureFlag

pkgs.haskell.lib.appendConfigureFlag

Docs pulled from | This Revision | 13 minutes ago


appendConfigureFlag adds a single argument that will be passed to the cabal configure command, after the arguments that have been defined in the initial declaration or previous overrides.

Inputs

drv

1. Function argument

x

2. Function argument

Examples

appendConfigureFlag usage example

> haskell.lib.appendConfigureFlag haskellPackages.servant "--profiling-detail=all-functions"

Noogle detected

Implementation

The following is the current implementation of this function.

appendConfigureFlag = drv: x: compose.appendConfigureFlag x drv;