summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/texmath/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/texmath/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/texmath/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/texmath/default.nix b/pkgs/development/libraries/haskell/texmath/default.nix
new file mode 100644
index 00000000000..66369cb60ba
--- /dev/null
+++ b/pkgs/development/libraries/haskell/texmath/default.nix
@@ -0,0 +1,14 @@
+{cabal, cgi, json, parsec, xml}:
+
+cabal.mkDerivation (self : {
+  pname = "texmath";
+  version = "0.2.0.3";
+  sha256 = "d355a298d28b9f5356926c2d2942f28ed07afa9d944cadfa47d8cdec73725b55";
+  propagatedBuildInputs = [cgi json parsec xml];
+  meta = {
+    description = "Conversion of LaTeX math formulas to MathML";
+    license = "GPL";
+    maintainers = [self.stdenv.lib.maintainers.andres];
+  };
+})  
+