2012-11-20 05:40:17 -08:00
|
|
|
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcre }:
|
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-01-28 01:31:43 -08:00
|
|
|
version = "0.5.6.1";
|
|
|
|
sha256 = "0hwzybihx5znd2z00kqcffqmng7vwynmav0x0zf2b9g415c2lx23";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-11-20 05:40:17 -08:00
|
|
|
buildDepends = [ blazeHtml filepath mtl parsec regexPcre ];
|
2014-01-25 11:44:18 -08:00
|
|
|
jailbreak = true;
|
2014-01-27 02:39:14 -08: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
|
|
|
})
|