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";
|
2013-07-23 14:45:34 +01:00
|
|
|
version = "1.8.49";
|
|
|
|
sha256 = "03i5nw2v2s4c5860vpqnvil2wrxblavjkbnrgi59jkmcbhl2h70f";
|
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";
|
2012-11-08 13:57:37 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-21 22:48:10 +01:00
|
|
|
};
|
|
|
|
})
|