7ea86fc8a2
- hlint: updated to version 1.8.29 - hscolour: updated to version 1.20.2 - random-fu: updated to version 0.2.3.0 svn path=/nixpkgs/trunk/; revision=34324
22 lines
591 B
Nix
22 lines
591 B
Nix
{ cabal, cpphs, filepath, haskellSrcExts, hscolour, transformers
|
|
, uniplate
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hlint";
|
|
version = "1.8.29";
|
|
sha256 = "07l281106kkahdzgilhh2njjirll0mhr318i3zmhn2ygcb9dvkdr";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
cpphs filepath haskellSrcExts hscolour transformers uniplate
|
|
];
|
|
meta = {
|
|
homepage = "http://community.haskell.org/~ndm/hlint/";
|
|
description = "Source code suggestions";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|