summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/texmath/0.4.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/texmath/0.4.nix')
-rw-r--r--pkgs/development/libraries/haskell/texmath/0.4.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/libraries/haskell/texmath/0.4.nix b/pkgs/development/libraries/haskell/texmath/0.4.nix
index e3a68f13ce48e..afaece76acec9 100644
--- a/pkgs/development/libraries/haskell/texmath/0.4.nix
+++ b/pkgs/development/libraries/haskell/texmath/0.4.nix
@@ -1,15 +1,20 @@
-{cabal, parsec, syb, xml} :
+{ cabal, parsec, syb, xml }:
 
-cabal.mkDerivation (self : {
+cabal.mkDerivation (self: {
   pname = "texmath";
   version = "0.4";
   sha256 = "1rvnhqljxkljy8ncpaj8p7b14nvvm6zmiixv13m1zxlcr457j2ai";
-  propagatedBuildInputs = [ parsec syb xml ];
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [ parsec syb xml ];
   meta = {
     homepage = "http://github.com/jgm/texmath";
     description = "Conversion of LaTeX math formulas to MathML.";
     license = "GPL";
     platforms = self.ghc.meta.platforms;
-    maintainers = [ self.stdenv.lib.maintainers.simons ];
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
   };
 })