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

cabal.mkDerivation (self : {
  pname = "texmath";
  version = "0.4";
  sha256 = "1rvnhqljxkljy8ncpaj8p7b14nvvm6zmiixv13m1zxlcr457j2ai";
  propagatedBuildInputs = [ parsec syb xml ];
  meta = {
    homepage = "http://github.com/jgm/texmath";
    description = "Conversion of LaTeX math formulas to MathML.";
    license = "GPL";
    platforms = self.stdenv.lib.platforms.haskellPlatforms;
    maintainers = [ self.stdenv.lib.maintainers.simons ];
  };
})