rustc: Disable fragile tcp tests on Darwin

This is an alternative implementation of
https://github.com/NixOS/nixpkgs/pull/21741/files
This commit is contained in:
Moritz Ulrich
2017-01-08 16:55:36 +01:00
parent 2a2e8e906b
commit 7435fefd26
2 changed files with 37 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,6 @@
let
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
in
rec {
rustc = callPackage ./rustc.nix {
shortVersion = "1.14";
@@ -16,6 +15,7 @@ rec {
patches = [
./patches/disable-lockfile-check-stable.patch
./patches/darwin-disable-fragile-tcp-tests.patch
] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
inherit targets;