2012-11-20 17:40:17 +04:00
|
|
|
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcre }:
|
2009-07-18 19:25:28 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 19:25:28 +04:00
|
|
|
pname = "highlighting-kate";
|
2013-03-06 14:06:01 +04:00
|
|
|
version = "0.5.3.8";
|
|
|
|
sha256 = "1fdgmwhiw05mgbgsrgyzvdqzklw9r10nswxfpnxkh5ivfxrhz82w";
|
2011-08-10 03:00:20 +04:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-11-20 17:40:17 +04:00
|
|
|
buildDepends = [ blazeHtml filepath mtl parsec regexPcre ];
|
2013-02-20 14:58:03 +04:00
|
|
|
prePatch = "sed -i -e 's|regex-pcre-builtin|regex-pcre|' highlighting-kate.cabal";
|
2009-07-18 19:25:28 +04:00
|
|
|
meta = {
|
2011-08-07 22:23:27 +04:00
|
|
|
homepage = "http://github.com/jgm/highlighting-kate";
|
2009-07-18 19:25:28 +04:00
|
|
|
description = "Syntax highlighting";
|
2011-08-07 22:23:27 +04:00
|
|
|
license = "GPL";
|
2011-08-09 13:54:50 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 17:57:25 +04:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-07-18 19:25:28 +04:00
|
|
|
};
|
2011-03-28 19:04:00 +04:00
|
|
|
})
|