nixpkgs/pkgs/development/tools/haskell/hlint/default.nix
Peter Simons d9de74edd6 haskell-hlint: updated to version 1.8.21
svn path=/nixpkgs/trunk/; revision=31862
2012-01-26 14:20:27 +00:00

22 lines
622 B
Nix

{ cabal, cpphs, haskellSrcExts, hscolour, transformers, uniplate }:
cabal.mkDerivation (self: {
pname = "hlint";
version = "1.8.21";
sha256 = "1vjl1qncxia9352469k9v28283f17xk0xhb28by6crchz596xln6";
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
];
};
})