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