nixpkgs/pkgs/development/libraries/haskell/texmath/default.nix
Peter Simons a0e7016709 haskell-texmath: updated to version 0.5.0.4
svn path=/nixpkgs/trunk/; revision=31195
2012-01-01 21:24:20 +00:00

21 lines
552 B
Nix

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