Skip to content

Commit d0c18d3

Browse files
committed
Add new hiedb to nix config
1 parent d6f0195 commit d0c18d3

5 files changed

+12
-0
lines changed

configuration-ghc-90.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ let
2424
lsp-types = hself.callCabal2nix "lsp-types" inputs.lsp-types {};
2525
lsp-test = hself.callCabal2nix "lsp-test" inputs.lsp-test {};
2626

27+
hiedb = hself.callCabal2nix "hiedb" inputs.hiedb {};
28+
2729
hlint = appendConfigureFlag (hself.callCabal2nix "hlint" inputs.hlint-35 {}) "-fghc-lib";
2830

2931
hls-hlint-plugin = hself.callCabal2nixWithOptions "hls-hlint-plugin"

configuration-ghc-92.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ let
2525

2626
ghc-lib-parser = hsuper.ghc-lib-parser_9_4_5_20230430;
2727

28+
hiedb = hself.callCabal2nix "hiedb" inputs.hiedb {};
29+
2830
hlint = appendConfigureFlag (hself.callCabal2nix "hlint" inputs.hlint-35 {}) "-fghc-lib";
2931

3032
ormolu = hself.callCabal2nix "ormolu" inputs.ormolu-052 {};

configuration-ghc-94.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ let
2323
lsp-types = hself.callCabal2nix "lsp-types" inputs.lsp-types {};
2424
lsp-test = dontCheck (hself.callCabal2nix "lsp-test" inputs.lsp-test {});
2525

26+
hiedb = hself.callCabal2nix "hiedb" inputs.hiedb {};
27+
2628
# Re-generate HLS drv excluding some plugins
2729
haskell-language-server =
2830
hself.callCabal2nixWithOptions "haskell-language-server" ./.

configuration-ghc-96.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ let
4848
lsp-types = hself.callCabal2nix "lsp-types" inputs.lsp-types {};
4949
lsp-test = dontCheck (hself.callCabal2nix "lsp-test" inputs.lsp-test {});
5050

51+
hiedb = hself.callCabal2nix "hiedb" inputs.hiedb {};
52+
5153
# Re-generate HLS drv excluding some plugins
5254
haskell-language-server =
5355
hself.callCabal2nixWithOptions "haskell-language-server" ./.

flake.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@
8181
url = "github:smunix/implicit-hie-cradle?ref=smunix-patch-hls-0.5-1";
8282
flake = false;
8383
};
84+
hiedb = {
85+
url = "github:nlander/HieDb?ref=all-new-functions";
86+
flake = false;
87+
};
8488
};
8589
outputs =
8690
inputs@{ self, nixpkgs, flake-compat, flake-utils, gitignore, ... }:

0 commit comments

Comments
 (0)