mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
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:
parent
843d60b337
commit
0ec3f8f7ee
15
pkgs/development/libraries/haskell/texmath/0.4.nix
Normal file
15
pkgs/development/libraries/haskell/texmath/0.4.nix
Normal 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 ];
|
||||
};
|
||||
})
|
@ -1078,7 +1078,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
testpack = callPackage ../development/libraries/haskell/testpack {};
|
||||
|
||||
texmath = callPackage ../development/libraries/haskell/texmath {};
|
||||
texmath_0_4 = callPackage ../development/libraries/haskell/texmath/0.4.nix {};
|
||||
texmath_0_5_0_1 = callPackage ../development/libraries/haskell/texmath/0.5.0.1.nix {};
|
||||
texmath = self.texmath_0_5_0_1;
|
||||
|
||||
text_0_11_0_5 = callPackage ../development/libraries/haskell/text/0.11.0.5.nix {};
|
||||
text_0_11_0_6 = callPackage ../development/libraries/haskell/text/0.11.0.6.nix {};
|
||||
|
Loading…
Reference in New Issue
Block a user