summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2010-04-23 12:38:34 +0000
committerAndres Löh <mail@andres-loeh.de>2010-04-23 12:38:34 +0000
commit776d8267c6948207a3b15243628f21c16ce58a54 (patch)
treeb09be8636c88ea5029c0f3bf7593440736c3e901 /pkgs/development/compilers/ghc
parent9fce3b7efc060a07f97fb2d4054de1fdbf326aef (diff)
downloadnixpkgs-776d8267c6948207a3b15243628f21c16ce58a54.tar
nixpkgs-776d8267c6948207a3b15243628f21c16ce58a54.tar.gz
nixpkgs-776d8267c6948207a3b15243628f21c16ce58a54.tar.bz2
nixpkgs-776d8267c6948207a3b15243628f21c16ce58a54.tar.lz
nixpkgs-776d8267c6948207a3b15243628f21c16ce58a54.tar.xz
nixpkgs-776d8267c6948207a3b15243628f21c16ce58a54.tar.zst
nixpkgs-776d8267c6948207a3b15243628f21c16ce58a54.zip
Added a couple of comments to ghc expression and myself as maintainer,
in preparation for adding ghc-6.12.2 ...

svn path=/nixpkgs/trunk/; revision=21268
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/6.12.1.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/6.12.1.nix b/pkgs/development/compilers/ghc/6.12.1.nix
index b54001a70ea..20a3a606be8 100644
--- a/pkgs/development/compilers/ghc/6.12.1.nix
+++ b/pkgs/development/compilers/ghc/6.12.1.nix
@@ -5,6 +5,7 @@ stdenv.mkDerivation rec {
   
   name = "ghc-${version}";
   
+  # TODO: Does this have to be here, or can it go to meta?
   homepage = "http://haskell.org/ghc";
 
   src = fetchurl {
@@ -34,11 +35,14 @@ stdenv.mkDerivation rec {
   meta = {
     inherit homepage;
     description = "The Glasgow Haskell Compiler";
-    maintainers = [stdenv.lib.maintainers.marcweber];
+    maintainers = [
+      stdenv.lib.maintainers.marcweber
+      stdenv.lib.maintainers.andres
+    ];
     platforms = stdenv.lib.platforms.linux;
   };
 
-
+  # TODO: requires a comment as to what it does and why it is needed.
   passthru = {
     corePackages = [
        [ "Cabal" "1.8.0.2" ]