nixpkgs/pkgs/development/tools/haskell/hlint/default.nix
Peter Simons e29935f9b3 hlint: updated to version 1.8.13
svn path=/nixpkgs/trunk/; revision=28231
2011-08-07 18:22:13 +00:00

18 lines
556 B
Nix

{cabal, cpphs, haskellSrcExts, hscolour, transformers, uniplate} :
cabal.mkDerivation (self : {
pname = "hlint";
version = "1.8.13";
sha256 = "125hvljx70b1zai3xdrarjl9fji2fq2g390rlffq428ifjrl9nk2";
propagatedBuildInputs = [
cpphs haskellSrcExts hscolour transformers uniplate
];
meta = {
homepage = "http://community.haskell.org/~ndm/hlint/";
description = "Source code suggestions";
license = "GPL";
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})