2012-02-16 15:05:41 +01: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";
|
2012-05-07 11:36:49 +02:00
|
|
|
version = "0.6.0.6";
|
|
|
|
sha256 = "0wxpz9vsgi4lfgjz5w96pn2r2jdflkvb4yd06nxshimxdr51974k";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 15:05:41 +01:00
|
|
|
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";
|
2012-02-06 15:27:57 +01:00
|
|
|
description = "Conversion of LaTeX math formulas to MathML or OMML";
|
2010-04-15 23:10:06 +02:00
|
|
|
license = "GPL";
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-15 23:10:06 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|