Merge pull request #173463 from SomeoneSerge/mxnet-broken

mxnet: mark cuda build as broken

authored by

Rick van Schijndel and committed by
GitHub
48037fd9 ecd14819

+3
+3
pkgs/applications/science/math/mxnet/default.nix
··· 40 40 buildInputs = [ opencv3 gtest blas.provider ] 41 41 ++ lib.optional stdenv.cc.isGNU gomp 42 42 ++ lib.optional stdenv.cc.isClang llvmPackages.openmp 43 + # FIXME: when cuda build is fixed, remove nvidia_x11, and use /run/opengl-driver/lib 43 44 ++ lib.optionals cudaSupport [ cudatoolkit nvidia_x11 ] 44 45 ++ lib.optional cudnnSupport cudnn; 45 46 ··· 78 79 maintainers = with maintainers; [ abbradar ]; 79 80 license = licenses.asl20; 80 81 platforms = platforms.unix; 82 + # Build failures when linking mxnet_unit_tests: https://gist.github.com/6d17447ee3557967ec52c50d93b17a1d 83 + broken = cudaSupport; 81 84 }; 82 85 }