2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, parsec, syb, xml }:
|
2010-04-15 23:10:06 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-15 23:10:06 +02:00
|
|
|
pname = "texmath";
|
2011-03-12 18:28:15 +01:00
|
|
|
version = "0.5.0.1";
|
|
|
|
sha256 = "0kw23b1df7456d2h48g2p7k8nvfv80a8a70xgkq4pn7v50vqipdy";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ parsec syb xml ];
|
2010-04-15 23:10:06 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://github.com/jgm/texmath";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Conversion of LaTeX math formulas to MathML";
|
2010-04-15 23:10:06 +02:00
|
|
|
license = "GPL";
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-04-15 23:10:06 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|