pythonPackages.pytorch: mark broken for darwin
This commit is contained in:
parent
c9a3ac5d3c
commit
3ceb5ab5ed
|
@ -297,12 +297,13 @@ in buildPythonPackage rec {
|
||||||
install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libshm.dylib
|
install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libshm.dylib
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
meta = {
|
|
||||||
description = "Open source, prototype-to-production deep learning platform";
|
description = "Open source, prototype-to-production deep learning platform";
|
||||||
homepage = "https://pytorch.org/";
|
homepage = "https://pytorch.org/";
|
||||||
license = lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = with lib.platforms; linux ++ lib.optionals (!cudaSupport) darwin;
|
platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin;
|
||||||
maintainers = with lib.maintainers; [ danieldk teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds
|
maintainers = with maintainers; [ danieldk teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds
|
||||||
|
# error: use of undeclared identifier 'noU'; did you mean 'no'?
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue