acc5a88cdd
- abstract-deque: added version 0.1.5 - abstract-par: added version 0.3 - bits-atomic: added version 0.1.3 - blaze-builder-conduit: updated to version 0.4.0.2 - IORefCAS: added version 0.2 - MemoTrie: updated to version 0.4.12 - monad-par: added version 0.3 - monad-par-extras: added version 0.3 - repa: updated to version 3.1.4.2 - texmath: updated to version 0.6.0.6 svn path=/nixpkgs/trunk/; revision=34003
18 lines
509 B
Nix
18 lines
509 B
Nix
{ cabal, parsec, syb, xml }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "texmath";
|
|
version = "0.6.0.6";
|
|
sha256 = "0wxpz9vsgi4lfgjz5w96pn2r2jdflkvb4yd06nxshimxdr51974k";
|
|
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 ];
|
|
};
|
|
})
|