nixpkgs/pkgs/development/tools/haskell/hlint/default.nix
Peter Simons c03581c2be haskell-hlint: updated to version 1.8.18
svn path=/nixpkgs/trunk/; revision=30273
2011-11-06 18:36:45 +00:00

23 lines
622 B
Nix

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