Skip to content

Commit 4f5d124

Browse files
author
Julien Debon
authored
tech(nix): Allow broken as retrie is marked as broken (#331)
See #325 for more information
1 parent ce9219d commit 4f5d124

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

shell.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
# assuming that cabal new-build does succeed outside nix-shell
1717

1818
{ sources ? import nix/sources.nix,
19-
nixpkgs ? import sources.nixpkgs {},
19+
# TODO Remove allowBroken once retrie is no longer marked as broken in Nixpkgs
20+
# See https://github.com/haskell/haskell-language-server/issues/325
21+
nixpkgs ? import sources.nixpkgs { config.allowBroken = true; },
2022
compiler ? "default",
2123
hoogle ? false
2224
}:

0 commit comments

Comments
 (0)