nixpkgs/pkgs/development/tools/haskell/hlint/default.nix
Peter Simons 23945e96b6 haskell-hlint: updated to version 1.8.15
svn path=/nixpkgs/trunk/; revision=28557
2011-08-13 23:39:01 +00:00

23 lines
622 B
Nix

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