2fb991c7ff
svn path=/nixpkgs/trunk/; revision=30358
21 lines
552 B
Nix
21 lines
552 B
Nix
{ cabal, parsec, syb, xml }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "texmath";
|
|
version = "0.5.0.3";
|
|
sha256 = "0pw3b5qvsngy0wdny8y3widkaphvjksg7mnpa8yzqfsw0rl36s0p";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ parsec syb xml ];
|
|
meta = {
|
|
homepage = "http://github.com/jgm/texmath";
|
|
description = "Conversion of LaTeX math formulas to MathML";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|