summary refs log tree commit diff
path: root/pkgs/tools/typesetting/lhs2tex
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-15 11:27:02 +0000
committerPeter Simons <simons@cryp.to>2011-08-15 11:27:02 +0000
commit21b26aef256d4bd101972b1eb74517f8c255693d (patch)
treed483b7044499aed18e2df0911b586e7ab37f6028 /pkgs/tools/typesetting/lhs2tex
parentbc4526f1c4dcba595aabbf1f67e80435d47a5572 (diff)
downloadnixlib-21b26aef256d4bd101972b1eb74517f8c255693d.tar
nixlib-21b26aef256d4bd101972b1eb74517f8c255693d.tar.gz
nixlib-21b26aef256d4bd101972b1eb74517f8c255693d.tar.bz2
nixlib-21b26aef256d4bd101972b1eb74517f8c255693d.tar.lz
nixlib-21b26aef256d4bd101972b1eb74517f8c255693d.tar.xz
nixlib-21b26aef256d4bd101972b1eb74517f8c255693d.tar.zst
nixlib-21b26aef256d4bd101972b1eb74517f8c255693d.zip
Updated Haskell package meta sections.
svn path=/nixpkgs/trunk/; revision=28583
Diffstat (limited to 'pkgs/tools/typesetting/lhs2tex')
-rw-r--r--pkgs/tools/typesetting/lhs2tex/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/lhs2tex/default.nix b/pkgs/tools/typesetting/lhs2tex/default.nix
index 68f2347bb656..61e1dfb9d875 100644
--- a/pkgs/tools/typesetting/lhs2tex/default.nix
+++ b/pkgs/tools/typesetting/lhs2tex/default.nix
@@ -1,6 +1,6 @@
 {cabal, texLive, regexCompat}:
 
-cabal.mkDerivation (self : {
+cabal.mkDerivation (self: {
   pname = "lhs2tex";
   version = "1.17";
   name = self.fname;
@@ -14,9 +14,14 @@ cabal.mkDerivation (self : {
   '';
 
   meta = {
+    homepage = "http://www.andres-loeh.de/lhs2tex/";
     description = "Preprocessor for typesetting Haskell sources with LaTeX";
-    license = "GPLv2";
-    maintainers = [self.stdenv.lib.maintainers.andres];
+    license = "GPL";
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
   };
 })