nixpkgs/pkgs/development/tools/haskell/hlint/default.nix
Peter Simons 5876576633 haskell-hlint: updated to version 1.8.19
svn path=/nixpkgs/trunk/; revision=30608
2011-11-28 18:12:33 +00:00

23 lines
622 B
Nix

{ cabal, cpphs, haskellSrcExts, hscolour, transformers, uniplate }:
cabal.mkDerivation (self: {
pname = "hlint";
version = "1.8.19";
sha256 = "0nbj5nkwmiadkp7h8nbx2xg79mvgd97hm9wk0nmfv9ncwnkz9xcc";
isLibrary = true;
isExecutable = true;
buildDepends = [
cpphs 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
self.stdenv.lib.maintainers.simons
];
};
})