nixpkgs/pkgs/development/tools/haskell/hlint/default.nix
2013-01-20 16:42:50 +01:00

22 lines
615 B
Nix

{ cabal, cpphs, filepath, haskellSrcExts, hscolour, transformers
, uniplate
}:
cabal.mkDerivation (self: {
pname = "hlint";
version = "1.8.41";
sha256 = "0b585i5v81jh1j2r70x74ykabc5hcd5sbww4kspl3s5i3jwkp16q";
isLibrary = true;
isExecutable = true;
buildDepends = [
cpphs filepath haskellSrcExts hscolour transformers uniplate
];
meta = {
homepage = "http://community.haskell.org/~ndm/hlint/";
description = "Source code suggestions";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})