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";
|
2013-07-01 02:04:04 -07:00
|
|
|
version = "0.5.4";
|
|
|
|
sha256 = "0khwhhcjvhsh92b420bylx4c1ahpvk6c50s8y6bacfwfq71ydwmb";
|
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 ];
|
2013-02-20 02:58:03 -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
|
|
|
})
|