forked from mirrors/nixpkgs
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
This commit is contained in:
parent
9fce3b7efc
commit
776d8267c6
|
@ -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" ]
|
||||
|
|
Loading…
Reference in a new issue