summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/texmath/default.nix
blob: a329076c3527f4047d4d1b6e96db9522d7c2fcd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, parsec, syb, xml}:

cabal.mkDerivation (self : {
  pname = "texmath";
  version = "0.5.0.1";
  sha256 = "0kw23b1df7456d2h48g2p7k8nvfv80a8a70xgkq4pn7v50vqipdy";
  propagatedBuildInputs = [parsec syb xml];
  meta = {
    description = "Conversion of LaTeX math formulas to MathML";
    license = "GPL";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})