-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f50b02
commit 1fe2f94
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ mkDerivation, aeson, apply-refact, base, binary, bytestring | ||
, containers, data-default, deepseq, Diff, directory, extra | ||
, filepath, ghc-exactprint, ghc-lib-parser, ghc-lib-parser-ex | ||
, ghcide, hashable, hlint, hls-plugin-api, hls-test-utils, lens | ||
, lib, lsp, lsp-types, mtl, refact, regex-tdfa, row-types, stm | ||
, temporary, text, transformers, unordered-containers | ||
}: | ||
mkDerivation { | ||
pname = "hls-hlint-plugin"; | ||
version = "2.2.0.0"; | ||
sha256 = "0qrygjvgm5x88j7cjw9dhzli38by0gzmda8f8bkqi8v1qx09ny76"; | ||
libraryHaskellDepends = [ | ||
aeson apply-refact base binary bytestring containers data-default | ||
deepseq Diff directory extra filepath ghc-exactprint ghc-lib-parser | ||
ghc-lib-parser-ex ghcide hashable hlint hls-plugin-api lens lsp mtl | ||
refact regex-tdfa stm temporary text transformers | ||
unordered-containers | ||
]; | ||
testHaskellDepends = [ | ||
aeson base containers filepath hls-plugin-api hls-test-utils lens | ||
lsp-types row-types text | ||
]; | ||
description = "Hlint integration plugin with Haskell Language Server"; | ||
license = lib.licenses.asl20; | ||
} |