2013-08-26 09:37:12 +01:00
|
|
|
{ cabal, pandocTypes, parsec, syb, xml }:
|
2010-04-15 22:10:06 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 22:10:06 +01:00
|
|
|
pname = "texmath";
|
2014-06-03 10:36:19 +01:00
|
|
|
version = "0.6.6.2";
|
|
|
|
sha256 = "0lwkbniw7nn19gaw5bl1fsbl5q54n111zpiwz8b49d03vmmvd3hs";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2013-08-26 09:37:12 +01:00
|
|
|
buildDepends = [ pandocTypes parsec syb xml ];
|
2010-04-15 22:10:06 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://github.com/jgm/texmath";
|
2012-02-06 14:27:57 +00:00
|
|
|
description = "Conversion of LaTeX math formulas to MathML or OMML";
|
2010-04-15 22:10:06 +01:00
|
|
|
license = "GPL";
|
2011-08-10 00:00:20 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 22:10:06 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|