We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 781ebea commit 577c848Copy full SHA for 577c848
cabal-install/src/Distribution/Client/ProjectPlanning.hs
@@ -1246,8 +1246,8 @@ getPackageSourceHashes verbosity withRepoCtx solverPlan = do
1246
]
1247
| (repo, pkgids) <-
1248
map (\grp@((repo, _) :| _) -> (repo, map snd (NE.toList grp)))
1249
- . NE.groupBy ((==) `on` (remoteRepoName . repoRemote . fst))
1250
- . sortBy (compare `on` (remoteRepoName . repoRemote . fst))
+ . NE.groupBy ((==) `on` (fmap remoteRepoName . maybeRepoRemote . fst))
+ . sortBy (compare `on` (fmap remoteRepoName . maybeRepoRemote . fst))
1251
$ repoTarballPkgsWithMetadata
1252
1253
0 commit comments