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

cabal.mkDerivation (self : {
  pname = "colorize-haskell";
  version = "1.0.0";
  sha256 = "14c180ea3e8beb12dd289c51453bd2e3583f306799db4630c8f86cf09bbb3763";
  propagatedBuildInputs = [ansiTerminal haskellLexer];
  meta = {
    description = "Highlight Haskell source";
  };
})