summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2016-08-01 09:49:03 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2016-08-10 21:16:37 +0200
commit6fd05916744705ff6428bb1be2062a20ac2060bb (patch)
treed194e239ca8a8c673a64d151b6e17964af907dc1 /pkgs
parentd5569064c38a8cd816a1e4aecfe23e3d52054df9 (diff)
downloadnixpkgs-6fd05916744705ff6428bb1be2062a20ac2060bb.tar
nixpkgs-6fd05916744705ff6428bb1be2062a20ac2060bb.tar.gz
nixpkgs-6fd05916744705ff6428bb1be2062a20ac2060bb.tar.bz2
nixpkgs-6fd05916744705ff6428bb1be2062a20ac2060bb.tar.lz
nixpkgs-6fd05916744705ff6428bb1be2062a20ac2060bb.tar.xz
nixpkgs-6fd05916744705ff6428bb1be2062a20ac2060bb.tar.zst
nixpkgs-6fd05916744705ff6428bb1be2062a20ac2060bb.zip
rustc: Disable doCheck on Darwin.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/rust/rustc.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix
index e9df84a96a0..e98333d4d74 100644
--- a/pkgs/development/compilers/rust/rustc.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -115,6 +115,7 @@ stdenv.mkDerivation {
 
   preCheck = "export TZDIR=${tzdata}/share/zoneinfo";
 
-  doCheck = true;
+  # Disable doCheck on Darwin to work around upstream issue
+  doCheck = !stdenv.isDarwin;
   dontSetConfigureCross = true;
 }