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";
|
2013-12-01 23:29:11 +01:00
|
|
|
version = "1.8.55";
|
|
|
|
sha256 = "184y0vh5rwsv13vj49zvgwwpgdf5y7wxfisry9pv2998flwkf4rj";
|
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
|
|
|
];
|
2013-08-18 18:36:32 +02:00
|
|
|
jailbreak = true;
|
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";
|
2012-11-08 14:57:37 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-21 23:48:10 +02:00
|
|
|
};
|
|
|
|
})
|