Merge pull request #52257 from shlevy/haskell-allow-inconsistent-dependencies
haskell generic builder: Add flag to allow inconsistent dependencies.
This commit is contained in:
commit
82c5101266
@ -74,6 +74,10 @@ in
|
|||||||
, hardeningDisable ? stdenv.lib.optional (ghc.isHaLVM or false) "all"
|
, hardeningDisable ? stdenv.lib.optional (ghc.isHaLVM or false) "all"
|
||||||
, enableSeparateDataOutput ? false
|
, enableSeparateDataOutput ? false
|
||||||
, enableSeparateDocOutput ? doHaddock
|
, enableSeparateDocOutput ? doHaddock
|
||||||
|
, # Don't fail at configure time if there are multiple versions of the
|
||||||
|
# same package in the (recursive) dependencies of the package being
|
||||||
|
# built. Will delay failures, if any, to compile time.
|
||||||
|
allowInconsistentDependencies ? false
|
||||||
} @ args:
|
} @ args:
|
||||||
|
|
||||||
assert editedCabalFile != null -> revision != null;
|
assert editedCabalFile != null -> revision != null;
|
||||||
@ -336,11 +340,12 @@ stdenv.mkDerivation ({
|
|||||||
|
|
||||||
echo configureFlags: $configureFlags
|
echo configureFlags: $configureFlags
|
||||||
${setupCommand} configure $configureFlags 2>&1 | ${coreutils}/bin/tee "$NIX_BUILD_TOP/cabal-configure.log"
|
${setupCommand} configure $configureFlags 2>&1 | ${coreutils}/bin/tee "$NIX_BUILD_TOP/cabal-configure.log"
|
||||||
if ${gnugrep}/bin/egrep -q -z 'Warning:.*depends on multiple versions' "$NIX_BUILD_TOP/cabal-configure.log"; then
|
${stdenv.lib.optionalString (!allowInconsistentDependencies) ''
|
||||||
echo >&2 "*** abort because of serious configure-time warning from Cabal"
|
if ${gnugrep}/bin/egrep -q -z 'Warning:.*depends on multiple versions' "$NIX_BUILD_TOP/cabal-configure.log"; then
|
||||||
exit 1
|
echo >&2 "*** abort because of serious configure-time warning from Cabal"
|
||||||
fi
|
exit 1
|
||||||
|
fi
|
||||||
|
''}
|
||||||
export GHC_PACKAGE_PATH="$packageConfDir:"
|
export GHC_PACKAGE_PATH="$packageConfDir:"
|
||||||
|
|
||||||
runHook postConfigure
|
runHook postConfigure
|
||||||
|
@ -408,4 +408,11 @@ rec {
|
|||||||
*/
|
*/
|
||||||
generateOptparseApplicativeCompletions = commands: pkg:
|
generateOptparseApplicativeCompletions = commands: pkg:
|
||||||
pkgs.lib.foldr generateOptparseApplicativeCompletion pkg commands;
|
pkgs.lib.foldr generateOptparseApplicativeCompletion pkg commands;
|
||||||
|
|
||||||
|
# Don't fail at configure time if there are multiple versions of the
|
||||||
|
# same package in the (recursive) dependencies of the package being
|
||||||
|
# built. Will delay failures, if any, to compile time.
|
||||||
|
allowInconsistentDependencies = drv: overrideCabal drv (drv: {
|
||||||
|
allowInconsistentDependencies = true;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user