2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, parsec, syb, xml }:
|
2010-04-15 14:10:06 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 14:10:06 -07:00
|
|
|
pname = "texmath";
|
2013-01-30 02:29:42 -08:00
|
|
|
version = "0.6.1.3";
|
|
|
|
sha256 = "1f2hka9jwlrm9dvw7z3896yfpdzxs2vaw0vbcmj5p401mvzc8w05";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ parsec syb xml ];
|
2010-04-15 14:10:06 -07:00
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://github.com/jgm/texmath";
|
2012-02-06 06:27:57 -08:00
|
|
|
description = "Conversion of LaTeX math formulas to MathML or OMML";
|
2010-04-15 14:10:06 -07:00
|
|
|
license = "GPL";
|
2011-08-09 16:00:20 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 14:10:06 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|