Skip to content

Commit

Permalink
Create hlint.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Oct 3, 2023
1 parent 2db9189 commit 84bbdc6
Showing 1 changed file with 27 additions and 0 deletions.
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.5";
sha256 = "0kxdrqybnma508g1z42s3rc3cay11m8nl5ziddyw31m020515gcq";
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";
}

0 comments on commit 84bbdc6

Please sign in to comment.