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