Skip to content

Commit 7f213ac

Browse files
committed
Fix shell, Use GHC 8.10.7 for cabal-install
1 parent fbfaa5e commit 7f213ac

3 files changed

Lines changed: 2 additions & 1 deletion

File tree

default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,6 @@ in let this = rec {
555555
cabal-install
556556
ghcid
557557
hasktags
558-
hlint
559558
stylish-haskell # Recent stylish-haskell only builds with AMP in place
560559
reflex-ghci
561560
;

nixpkgs-overlays/ghc.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
self: super: {
44
cabal2nix-unwrapped = self.haskell.packages.ghc8107.cabal2nix;
5+
cabal-install = self.haskell.packages.ghc8107.cabal-install;
56
# Apply custom patches to Haskell compilers
67
haskell = super.haskell // {
78
compiler = super.haskell.compiler // {

packages.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ with haskellPackages;
2020
# Add ghc-only packages here #
2121
##############################################################################
2222
reflex-todomvc
23+
hlint
2324

2425
] else []) ++ builtins.concatLists (map (x: (x.override { mkDerivation = drv: { out = (drv.buildDepends or []) ++ (drv.libraryHaskellDepends or []) ++ (drv.executableHaskellDepends or []); }; }).out) [ reflex reflex-dom reflex-todomvc ])

0 commit comments

Comments
 (0)