2014-05-15 16:08:52 +02:00
|
|
|
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcre, utf8String }:
|
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";
|
2014-06-03 11:35:25 +02:00
|
|
|
version = "0.5.8.2";
|
|
|
|
sha256 = "1c85yfzi3ri3j1fmqvd4pc4pp95jpm62a2nbbibpybl2h88dsjsb";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2014-05-15 16:08:52 +02:00
|
|
|
buildDepends = [
|
|
|
|
blazeHtml filepath mtl parsec regexPcre utf8String
|
|
|
|
];
|
2014-05-15 22:45:03 +02:00
|
|
|
prePatch = "sed -i -e 's|regex-pcre-builtin >= .*|regex-pcre|' highlighting-kate.cabal";
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 17:25:28 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|