nixpkgs/pkgs/development/libraries/haskell/texmath/default.nix
Peter Simons 629c2411cd haskell-texmath: updated to version 0.5.0.2
svn path=/nixpkgs/trunk/; revision=30079
2011-10-28 19:22:47 +00:00

21 lines
552 B
Nix

{ cabal, parsec, syb, xml }:
cabal.mkDerivation (self: {
pname = "texmath";
version = "0.5.0.2";
sha256 = "1ysg28q1l33hi6ias5pw0qps46kbys5piczipacrp58b0cm6pvrg";
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
];
};
})