2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, cpphs, filepath, haskellSrcExts, hscolour, transformers
|
|
|
|
, uniplate
|
2012-02-14 17:00:37 +00:00
|
|
|
}:
|
2009-04-21 22:48:10 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-21 22:48:10 +01:00
|
|
|
pname = "hlint";
|
2012-10-24 17:06:11 +01:00
|
|
|
version = "1.8.33";
|
|
|
|
sha256 = "1n1kcd99226f8cwx3zmjv0fh1xk2k0y490l6p2fa9m0av835brr7";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
cpphs filepath haskellSrcExts hscolour transformers uniplate
|
2011-08-07 19:22:13 +01:00
|
|
|
];
|
2009-04-21 22:48:10 +01:00
|
|
|
meta = {
|
2011-08-07 19:22:13 +01:00
|
|
|
homepage = "http://community.haskell.org/~ndm/hlint/";
|
2009-04-21 22:48:10 +01:00
|
|
|
description = "Source code suggestions";
|
2011-08-07 19:22:13 +01:00
|
|
|
license = "GPL";
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-21 22:48:10 +01:00
|
|
|
};
|
|
|
|
})
|