nixpkgs/pkgs/development/libraries/haskell/texmath/default.nix
Peter Simons 066cd10d99 haskell-texmath: updated to version 0.6.0.1
svn path=/nixpkgs/trunk/; revision=32067
2012-02-06 14:27:57 +00:00

21 lines
560 B
Nix

{ cabal, parsec, syb, xml }:
cabal.mkDerivation (self: {
pname = "texmath";
version = "0.6.0.1";
sha256 = "0q39a83g7kcj9qpnjg0v7pd0b4w9i090nl2s9v8lpv4n46z6cyaq";
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
self.stdenv.lib.maintainers.simons
];
};
})