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-02-20 11:45:02 +01:00
|
|
|
version = "1.8.24";
|
|
|
|
sha256 = "1crxhpgy49xg3j225cyfxflnc8zgck2xa8hb04chd0yh9n03h6kx";
|
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;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-21 23:48:10 +02:00
|
|
|
};
|
|
|
|
})
|