2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, parsec, syb, xml }:
|
2011-08-08 00:00:21 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:00:21 +02:00
|
|
|
pname = "texmath";
|
|
|
|
version = "0.4";
|
|
|
|
sha256 = "1rvnhqljxkljy8ncpaj8p7b14nvvm6zmiixv13m1zxlcr457j2ai";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ parsec syb xml ];
|
2011-08-08 00:00:21 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/jgm/texmath";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Conversion of LaTeX math formulas to MathML";
|
2011-08-08 00:00:21 +02:00
|
|
|
license = "GPL";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:00:21 +02:00
|
|
|
};
|
|
|
|
})
|