2014-03-15 08:26:27 +00:00
|
|
|
{ cabal, cmdargs, 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";
|
2014-04-17 20:13:42 +01:00
|
|
|
version = "1.8.61";
|
|
|
|
sha256 = "08y8ny6dv14gxnzzr5f1hvs22m7y62yffyq2pzvw2aja8fbj5d2z";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2014-03-15 08:26:27 +00:00
|
|
|
cmdargs cpphs filepath haskellSrcExts hscolour transformers
|
|
|
|
uniplate
|
2011-08-07 19:22:13 +01:00
|
|
|
];
|
2013-08-18 17:36:32 +01:00
|
|
|
jailbreak = true;
|
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
|
|
|
};
|
|
|
|
})
|