summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/highlighting-kate/default.nix
blob: ad4b6cde79fcbd73c770feea2237bf5ef282a9c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ cabal, blazeHtml, Cabal, filepath, mtl, parsec, regexPcreBuiltin
}:

cabal.mkDerivation (self: {
  pname = "highlighting-kate";
  version = "0.5.0.4";
  sha256 = "1kn73gcjhndb5wbdy9hbjgar1bdcmy8cy831ib4ik1fn62zmvxrf";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    blazeHtml Cabal filepath mtl parsec regexPcreBuiltin
  ];
  meta = {
    homepage = "http://github.com/jgm/highlighting-kate";
    description = "Syntax highlighting";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})