22 lines
591 B
Nix
22 lines
591 B
Nix
{ cabal, cpphs, filepath, haskellSrcExts, hscolour, transformers
|
|
, uniplate
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hlint";
|
|
version = "1.8.30";
|
|
sha256 = "1c52h7pi759dnqzfq46nyckp75aswpqkf2n7aag2np955ky7rd05";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
cpphs filepath haskellSrcExts hscolour transformers uniplate
|
|
];
|
|
meta = {
|
|
homepage = "http://community.haskell.org/~ndm/hlint/";
|
|
description = "Source code suggestions";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|