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-07-14 11:14:40 +02:00
|
|
|
version = "1.8.30";
|
|
|
|
sha256 = "1c52h7pi759dnqzfq46nyckp75aswpqkf2n7aag2np955ky7rd05";
|
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
|
|
|
};
|
|
|
|
})
|