Merge remote-tracking branch 'origin/master' into stdenv-updates

This commit is contained in:
Eelco Dolstra
2013-01-22 23:23:53 +01:00
73 changed files with 2686 additions and 1817 deletions

View File

@@ -50,11 +50,13 @@ python.stdenv.mkDerivation (attrs // {
name = namePrefix + name;
# default values for maintainers and platforms
# default to python's platforms and add maintainer(s) to every
# package
meta = {
maintainers = python.meta.maintainers;
platforms = python.meta.platforms;
} // meta;
} // meta // {
maintainers = (meta.maintainers or []) ++ [ lib.maintainers.chaoflow ];
};
# checkPhase after installPhase to run tests on installed packages
phases = "unpackPhase patchPhase configurePhase buildPhase installPhase checkPhase fixupPhase distPhase";