2014-05-15 07:08:52 -07:00
|
|
|
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcre, utf8String }:
|
2009-07-18 08:25:28 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 08:25:28 -07:00
|
|
|
pname = "highlighting-kate";
|
2014-05-15 07:08:52 -07:00
|
|
|
version = "0.5.8.1";
|
|
|
|
sha256 = "10hbsra6ifjj765shf6x4c8kgb5bmv3zcgya3lcswvwa9xn78h9p";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2014-05-15 07:08:52 -07:00
|
|
|
buildDepends = [
|
|
|
|
blazeHtml filepath mtl parsec regexPcre utf8String
|
|
|
|
];
|
2014-05-15 13:45:03 -07:00
|
|
|
prePatch = "sed -i -e 's|regex-pcre-builtin >= .*|regex-pcre|' highlighting-kate.cabal";
|
2009-07-18 08:25:28 -07:00
|
|
|
meta = {
|
2011-08-07 11:23:27 -07:00
|
|
|
homepage = "http://github.com/jgm/highlighting-kate";
|
2009-07-18 08:25:28 -07:00
|
|
|
description = "Syntax highlighting";
|
2011-08-07 11:23:27 -07:00
|
|
|
license = "GPL";
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 08:25:28 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|