2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, cpphs, filepath, haskellSrcExts, hscolour, transformers
|
|
|
|
, uniplate
|
2012-02-14 09:00:37 -08:00
|
|
|
}:
|
2009-04-21 14:48:10 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-21 14:48:10 -07:00
|
|
|
pname = "hlint";
|
2013-05-13 02:21:37 -07:00
|
|
|
version = "1.8.45";
|
|
|
|
sha256 = "14j77bjmdsxz5z0ka6mhnr2j29kpr5a39kbdq8ziga668wihdrz9";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
cpphs filepath haskellSrcExts hscolour transformers uniplate
|
2011-08-07 11:22:13 -07:00
|
|
|
];
|
2009-04-21 14:48:10 -07:00
|
|
|
meta = {
|
2011-08-07 11:22:13 -07:00
|
|
|
homepage = "http://community.haskell.org/~ndm/hlint/";
|
2009-04-21 14:48:10 -07:00
|
|
|
description = "Source code suggestions";
|
2012-11-08 05:57:37 -08:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-21 14:48:10 -07:00
|
|
|
};
|
|
|
|
})
|