3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
18 lines
509 B
Nix
18 lines
509 B
Nix
{ cabal, parsec, syb, xml }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "texmath";
|
|
version = "0.6.1.5";
|
|
sha256 = "15cxki04khq29m9h5wxzxgppc3r58ccp2hgsslp2g1f59x2wm348";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ parsec syb xml ];
|
|
meta = {
|
|
homepage = "http://github.com/jgm/texmath";
|
|
description = "Conversion of LaTeX math formulas to MathML or OMML";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|