2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcreBuiltin }:
|
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";
|
2012-05-31 09:24:47 +02:00
|
|
|
version = "0.5.1";
|
|
|
|
sha256 = "0l0g71rg7cs9rm4i04h88fm20868s0kf2da89297xlrm58zfv0jj";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ blazeHtml filepath mtl parsec regexPcreBuiltin ];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 17:25:28 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|