This repository was archived by the owner on Feb 3, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,12 +33,12 @@ release vstr incs = Release (HpVersion $ version vstr) incs []
33
33
-- | Construct list of Includes as a delta to packages in another release.
34
34
-- The contents of the single list provided are applied to both the core and
35
35
-- the full include lists (since full is just the additions to core with no
36
- -- overlap).
36
+ -- overlap). Note that this will only _update_ packages, not provide new ones.
37
37
deltaFrom :: Release -> [Include ] -> ([Include ], [Include ])
38
38
deltaFrom base deltas = ( go (relMinimalIncludes base) deltas
39
39
, go (relIncludes base) deltas )
40
40
where
41
- go [] dIncs = dIncs
41
+ go [] dIncs = [] -- dIncs
42
42
go (bInc : bIncs) dIncs =
43
43
let (updates, dIncs') = partition (match bInc) dIncs
44
44
in merge bInc updates : go bIncs dIncs'
Original file line number Diff line number Diff line change @@ -121,13 +121,17 @@ hp_8_2_2 =
121
121
and as such, do not carry the same stability guaruntees.
122
122
, incGHCLib "ghc-prim" "0.5.1.1"
123
123
-}
124
+
124
125
, incTool " alex" " 3.2.3"
125
126
, incTool " happy" " 1.19.8"
126
127
127
128
, incTool " hscolour" " 1.24.2"
128
129
, incLib " HTTP" " 4000.3.8"
129
130
, incLib " QuickCheck" " 2.10.1"
130
131
, incLib " scientific" " 0.3.5.2"
132
+
133
+ , incGHCTool " cabal-install" " 2.0.0.1"
134
+ , incGHCTool " stack" " 1.6.1"
131
135
]
132
136
133
137
You can’t perform that action at this time.
0 commit comments