File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -515,11 +515,11 @@ getBuildComponentDir (Just name) = parseRelDir (name FilePath.</> (name ++ "-tmp
515
515
516
516
-- | Get all dependencies of the package (buildable targets only).
517
517
packageDependencies :: PackageDescription -> Map PackageName VersionRange
518
- packageDependencies =
519
- M. fromListWith intersectVersionRanges .
520
- concatMap ( fmap ( depName &&& depRange) .
521
- targetBuildDepends) .
522
- allBuildInfo'
518
+ packageDependencies pkg =
519
+ M. fromListWith intersectVersionRanges $
520
+ map ( depName &&& depRange) $
521
+ concatMap targetBuildDepends (allBuildInfo' pkg) ++
522
+ maybe [] setupDepends (setupBuildInfo pkg)
523
523
524
524
-- | Get all build tool dependencies of the package (buildable targets only).
525
525
packageToolDependencies :: PackageDescription -> Map Text VersionRange
Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ instance Store MiniBuildPlan
434
434
instance NFData MiniBuildPlan
435
435
436
436
miniBuildPlanVC :: VersionConfig MiniBuildPlan
437
- miniBuildPlanVC = storeVersionConfig " mbp-v1 " " C8q73RrYq3plf9hDCapjWpnm_yc="
437
+ miniBuildPlanVC = storeVersionConfig " mbp-v2 " " C8q73RrYq3plf9hDCapjWpnm_yc="
438
438
439
439
-- | Information on a single package for the 'MiniBuildPlan'.
440
440
data MiniPackageInfo = MiniPackageInfo
You can’t perform that action at this time.
0 commit comments