3e0ac9b040
Several changes, some highlights: * Structure of haskell-packages.nix updated. It's now easier to select different default versions of packages for different versions of GHC. * GHC 7.0.2 is now default. * Haskell Platform 2011.2.0.0 has been added and is now default. * Several packages have been updated (gtk2hs, gitit, xmonad, darcs, ...). * Some old packages have been removed. svn path=/nixpkgs/trunk/; revision=26288
15 lines
376 B
Nix
15 lines
376 B
Nix
{cabal, parsec, syb, xml}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "texmath";
|
|
version = "0.5.0.1";
|
|
sha256 = "0kw23b1df7456d2h48g2p7k8nvfv80a8a70xgkq4pn7v50vqipdy";
|
|
propagatedBuildInputs = [parsec syb xml];
|
|
meta = {
|
|
description = "Conversion of LaTeX math formulas to MathML";
|
|
license = "GPL";
|
|
maintainers = [self.stdenv.lib.maintainers.andres];
|
|
};
|
|
})
|
|
|