svn merge ^/nixpkgs/trunk

There were a few merge conflicts due to ensureDir->mkdir -p migration

svn path=/nixpkgs/branches/stdenv-updates/; revision=32174
This commit is contained in:
Yury G. Kudryashov
2012-02-10 10:24:30 +00:00
63 changed files with 589 additions and 575 deletions
@@ -6,7 +6,7 @@
then coverageAnalysis
else stdenv.mkDerivation)
rec {
(rec {
name = "guile-2.0.5";
src = fetchurl {
@@ -69,3 +69,13 @@ rec {
platforms = stdenv.lib.platforms.all;
};
}
//
(if stdenv.isFreeBSD
then {
# XXX: Thread support is currently broken on FreeBSD (namely the
# `SCM_I_IS_THREAD' assertion in `scm_spawn_thread' is hit.)
configureFlags = [ "--without-threads" ];
}
else {}))