8df74ef75a
svn path=/nixpkgs/trunk/; revision=29580
23 lines
622 B
Nix
23 lines
622 B
Nix
{ cabal, cpphs, haskellSrcExts, hscolour, transformers, uniplate }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hlint";
|
|
version = "1.8.17";
|
|
sha256 = "0p2sd24zi4a9fynib03dll8jbcc7izbmknfxv80v9j3lb2p8qj5h";
|
|
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
|
|
];
|
|
};
|
|
})
|