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