haskell-packages.nix: added the old 0.4 version of texmath, so that we can build pandoc 1.6, which is required by Graphalyze

svn path=/nixpkgs/trunk/; revision=28308
This commit is contained in:
Peter Simons
2011-08-07 22:00:21 +00:00
parent 843d60b337
commit 0ec3f8f7ee
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,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 ];
};
})