Skip to content

Commit d55ec23

Browse files
committed
More fixes for GHC HEAD
1 parent caec44b commit d55ec23

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

test/cabal-simple/default.nix

+5-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ in recurseIntoAttrs {
3131

3232
# Used for testing externally with nix-shell (../tests.sh).
3333
test-shell = (project.shellFor {
34-
tools = { cabal = { cabalProjectLocal = builtins.readFile ../cabal.project.local; }; };
35-
withHoogle = !__elem compiler-nix-name ["ghc901" "ghc902" "ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927"];
34+
tools = {
35+
cabal = { cabalProjectLocal = builtins.readFile ../cabal.project.local; };
36+
hoogle = { cabalProjectLocal = builtins.readFile ../cabal.project.local; };
37+
};
38+
withHoogle = true;
3639
}).overrideAttrs (_: _: {
3740
meta = rec {
3841
platforms = lib.platforms.all;

test/cabal.project.local

+5-10
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,15 @@ if impl(ghc>=9.10.1)
77
if impl(ghc > 9.11)
88
allow-newer: *:containers, *:time
99
constraints: base-compat >=0.14.0, aeson >=2.2.1.0
10+
-- From https://ghc.gitlab.haskell.org/head.hackage/cabal.constraints
11+
constraints: extra ==1.7.14
1012

1113
-- This prevents hsc2hs from causing old versions of packages from being added to plan.json
1214
allow-newer: hsc2hs:*
1315

1416
if impl(ghc >=9.10.1)
1517
extra-packages: process
1618

17-
if impl(ghc >=9.11)
18-
source-repository-package
19-
type: git
20-
location: https://github.com/hamishmack/extra.git
21-
tag: 3cced868b7f270acb90b7064d34e2d4c5952ca48
22-
--sha256: sha256-e2JHNRvkpws18dWmc+RUPWEESX+LV9W0u25dCG2e8ws=
23-
2419
repository head.hackage.ghc.haskell.org
2520
url: https://ghc.gitlab.haskell.org/head.hackage/
2621
secure: True
@@ -29,14 +24,14 @@ repository head.hackage.ghc.haskell.org
2924
f76d08be13e9a61a377a85e2fb63f4c5435d40f8feb3e12eb05905edb8cdea89
3025
26021a13b401500c8eb2761ca95c61f2d625bfef951b939a8124ed12ecf07329
3126
7541f32a4ccca4f97aea3b22f5e593ba2c0267546016b992dfadcd2fe944e55d
32-
--sha256: sha256-Z4NrYC11bsuJp4IPy6cRoFQ03wLAPEaejM9Y52n4EHk=
27+
--sha256: sha256-VFRuIfs3k6nyLVvT445wFRDy+bpcy1LVmLCMg1Oo/uE=
3328

3429
repository ghcjs-overlay
35-
url: https://raw.githubusercontent.com/input-output-hk/hackage-overlay-ghcjs/d37efd733666d090bf1c83bf7d5f9cb71b1dacc1
30+
url: https://raw.githubusercontent.com/input-output-hk/hackage-overlay-ghcjs/01ecad22c0a72e3c5a49262357cf0b062892d87f
3631
secure: True
3732
root-keys:
3833
key-threshold: 0
39-
--sha256: sha256-6I5mu1QFdvWFm6jWOUMKGm3VHvB7vSqiBjjHgAZJReo=
34+
--sha256: sha256-BjyXYh6oS4wE1iHlY/7as7vkmjxFOXzK6nOYzbzjQrM=
4035

4136
if os(ghcjs)
4237
extra-packages: ghci

0 commit comments

Comments
 (0)