0781e6718c
svn path=/nixpkgs/trunk/; revision=34297
18 lines
561 B
Nix
18 lines
561 B
Nix
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcreBuiltin }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "highlighting-kate";
|
|
version = "0.5.1";
|
|
sha256 = "0l0g71rg7cs9rm4i04h88fm20868s0kf2da89297xlrm58zfv0jj";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ blazeHtml 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 ];
|
|
};
|
|
})
|