summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/colorize-haskell/default.nix
blob: fa2b98801233d1a99a479b8554091e7b819abf19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, ansiTerminal, haskellLexer }:

cabal.mkDerivation (self: {
  pname = "colorize-haskell";
  version = "1.0.1";
  sha256 = "1v4spa6vw9igjpd1dr595z5raz5fr8f485q5w9imrv8spms46xh3";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ ansiTerminal haskellLexer ];
  meta = {
    homepage = "http://github.com/yav/colorize-haskell";
    description = "Highligt Haskell source";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})