Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use GHC9.6.2 #1771

Merged
merged 21 commits into from
Sep 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Create hlint.nix
  • Loading branch information
mpscholten committed Jul 25, 2023
commit ab706a581049b9f68419e497889a241af634bc27
27 changes: 27 additions & 0 deletions NixSupport/haskell-packages/hlint.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs
, containers, cpphs, data-default, deriving-aeson, directory, extra
, file-embed, filepath, filepattern, ghc-lib-parser
, ghc-lib-parser-ex, hscolour, lib, process, refact, text
, transformers, uniplate, unordered-containers, utf8-string, vector
, yaml
}:
mkDerivation {
pname = "hlint";
version = "3.6.1";
sha256 = "1za1cykiajyfl8ks59jdj6228qnlg5s96slc9jm9zcy1ncmi701j";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson ansi-terminal base bytestring cmdargs containers cpphs
data-default deriving-aeson directory extra file-embed filepath
filepattern ghc-lib-parser ghc-lib-parser-ex hscolour process
refact text transformers uniplate unordered-containers utf8-string
vector yaml
];
executableHaskellDepends = [ base ];
homepage = "https://github.com/ndmitchell/hlint#readme";
description = "Source code suggestions";
license = lib.licenses.bsd3;
mainProgram = "hlint";
}