opt-out some failing phases

svn path=/nixpkgs/branches/stdenv-updates/; revision=22285
wip/yesman
Marc Weber 14 years ago
parent 7db7857d15
commit 2dafd54743
  1. 2
      pkgs/applications/audio/cdparanoia/default.nix
  2. 2
      pkgs/applications/version-management/subversion/default.nix
  3. 2
      pkgs/desktops/gnome-2.28/desktop/gnome-doc-utils/default.nix
  4. 2
      pkgs/development/compilers/haxe/default.nix
  5. 3
      pkgs/development/compilers/neko/default.nix
  6. 1
      pkgs/development/compilers/ocaml/3.08.0.nix
  7. 1
      pkgs/development/compilers/ocaml/3.09.1.nix
  8. 2
      pkgs/development/compilers/ocaml/3.10.0.nix
  9. 2
      pkgs/development/compilers/ocaml/3.11.1.nix
  10. 2
      pkgs/development/libraries/gobject-introspection/default.nix
  11. 2
      pkgs/development/libraries/nss/default.nix
  12. 2
      pkgs/development/libraries/openssl/1.x.nix
  13. 2
      pkgs/development/libraries/openssl/default.nix
  14. 3
      pkgs/development/libraries/pth/default.nix
  15. 1
      pkgs/development/libraries/slang/default.nix
  16. 1
      pkgs/development/tools/parsing/flex/flex-2.5.33.nix
  17. 1
      pkgs/development/tools/parsing/flex/flex-2.5.34.nix
  18. 1
      pkgs/development/tools/parsing/flex/flex-2.5.35.nix
  19. 1
      pkgs/development/tools/parsing/flex/flex-2.5.4a.nix
  20. 2
      pkgs/tools/graphics/pstoedit/default.nix
  21. 1
      pkgs/top-level/perl-packages.nix

@ -6,6 +6,8 @@ stdenv.mkDerivation {
url = http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-alpha9.8.src.tgz;
md5 = "7218e778b5970a86c958e597f952f193";
};
NO_PARALLEL_BUILD_buildPhase = 1;
patches = [./fix.patch];

@ -74,4 +74,6 @@ stdenv.mkDerivation rec {
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.all;
};
NO_PARALLEL_BUILD_installPhase = 1;
}

@ -14,4 +14,6 @@ stdenv.mkDerivation {
wrapProgram $out/bin/xml2po --prefix PYTHONPATH : $(toPythonPath $out) \
''${PYTHONPATH:+ --prefix PYTHONPATH : $PYTHONPATH} \
'';
NO_PARALLEL_BUILD_buildPhase = 1;
}

@ -55,6 +55,8 @@ let
inherit zlib;
NUM_CORES = 1;
buildPhase = ''
set -x
mkdir -p ocaml/{swflib,extc,extlib-dev,xml-light} neko/libs

@ -70,4 +70,7 @@ composableDerivation {} ( fixed : {
# TODO make them optional and make them work
patches = [ ./disable-modules.patch ];
NUM_CORES = 1;
})

@ -7,6 +7,7 @@ stdenv.mkDerivation {
url = http://nixos.org/tarballs/ocaml-3.08.0.tar.gz;
md5 = "c6ef478362295c150101cdd2efcd38e0";
};
NUM_CORES = 1; # both fail: build and install
configureScript = ./configure-3.08.0;
dontAddPrefix = "True";
configureFlags = ["-no-tk" "-x11lib" x11];

@ -7,6 +7,7 @@ stdenv.mkDerivation {
url = http://caml.inria.fr/pub/distrib/ocaml-3.09/ocaml-3.09.1.tar.gz;
md5 = "c73f4b093e27ba5bf13d62923f89befc";
};
NUM_CORES = 1; # both fail: build and install
configureScript = ./configure-3.09.1;
dontAddPrefix = "True";
configureFlags = ["-no-tk" "-x11lib" x11];

@ -9,6 +9,8 @@ stdenv.mkDerivation (rec {
sha256 = "1ihmx1civ78s7k2hfc05z1s9vbyx2qw7fg8lnbxnfd6zxkk8878d";
};
NUM_CORES = 1; # both fail: build and install
prefixKey = "-prefix ";
configureFlags = ["-no-tk" "-x11lib" x11];
buildFlags = "world bootstrap world.opt";

@ -14,6 +14,8 @@ stdenv.mkDerivation (rec {
sha256 = "8c36a28106d4b683a15c547dfe4cb757a53fa9247579d1cc25bd06a22cc62e50";
};
NUM_CORES = 1; # both fail: build and install
prefixKey = "-prefix ";
configureFlags = ["-no-tk"] ++ optionals useX11 [ "-x11lib" x11 ];
buildFlags = "world" + optionalString useNativeCompilers " bootstrap world.opt";

@ -8,6 +8,8 @@ in
stdenv.mkDerivation rec {
name = "${baseName}-${v}";
NO_PARALLEL_BUILD_buildPhase = 1;
buildInputs = [ flex bison glib pkgconfig python cairo ];
propagatedBuildInputs = [ libffi ];
configureFlags = "--enable-gcov";

@ -19,6 +19,8 @@ stdenv.mkDerivation {
buildInputs = [nspr perl zlib];
NO_PARALLEL_BUILD_buildPhase = 1;
# Based on the build instructions at
# http://www.mozilla.org/projects/security/pki/nss/nss-3.11.4/nss-3.11.4-build.html

@ -14,6 +14,8 @@ stdenv.mkDerivation (rec {
sha1 = "3f800ea9fa3da1c0f576d689be7dca3d55a4cb62";
};
NO_PARALLEL_BUILD_buildPhase = 1;
buildNativeInputs = [ perl ];
configureScript = "./config";

@ -14,6 +14,8 @@ stdenv.mkDerivation ( rec {
sha256 = "008z1h09pa6dfxs4wgbqj5i1clw4v82b1waqvwanb1kb6wlbq6mh";
};
NO_PARALLEL_BUILD_buildPhase = 1;
buildNativeInputs = [ perl ];
configureScript = "./config";

@ -11,4 +11,7 @@ stdenv.mkDerivation rec {
description = "The GNU Portable Threads";
homepage = http://www.gnu.org/software/pth;
};
NO_PARALLEL_BUILD_buildPhase = 1;
NO_PARALLEL_BUILD_installPhase = 1;
}

@ -14,4 +14,5 @@ stdenv.mkDerivation {
'';
configureFlags = "--with-png=${libpng} --with-z=${zlib} --with-pcre=${pcre} --with-readline=${readline}";
buildInputs = [ncurses pcre libpng zlib readline];
NO_PARALLEL_BUILD_installPhase = 1;
}

@ -17,4 +17,5 @@ stdenv.mkDerivation {
meta = {
description = "A fast lexical analyser generator";
};
NO_PARALLEL_BUILD_installPhase = 1;
}

@ -16,4 +16,5 @@ stdenv.mkDerivation {
meta = {
description = "A fast lexical analyser generator";
};
NO_PARALLEL_BUILD_installPhase = 1;
}

@ -16,4 +16,5 @@ stdenv.mkDerivation {
meta = {
description = "A fast lexical analyser generator";
};
NO_PARALLEL_BUILD_installPhase = 1;
}

@ -9,4 +9,5 @@ stdenv.mkDerivation {
md5 = "bd8753d0b22e1f4ec87a553a73021adf";
};
buildInputs = [yacc];
NO_PARALLEL_BUILD_installPhase = 1;
}

@ -17,4 +17,6 @@ stdenv.mkDerivation {
platforms = args.lib.platforms.linux;
};
NUM_CORES = 1;
}

@ -2858,6 +2858,7 @@ rec {
};
XMLSAX = buildPerlPackage {
NUM_CORES=1;
name = "XML-SAX-0.96";
src = fetchurl {
url = mirror://cpan/authors/id/G/GR/GRANTM/XML-SAX-0.96.tar.gz;

Loading…
Cancel
Save