nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

libtensorflow: mark as broken and vulnerable

https://github.com/NixOS/nixpkgs/issues/250245

+4 -1
+4 -1
pkgs/development/python-modules/tensorflow/default.nix
··· 448 448 license = licenses.asl20; 449 449 maintainers = with maintainers; [ abbradar ]; 450 450 platforms = with platforms; linux ++ darwin; 451 - broken = !(xlaSupport -> cudaSupport) || python.pythonVersion == "3.11"; 451 + # More vulnerabilities in 2.11.1 really; https://github.com/tensorflow/tensorflow/releases 452 + knownVulnerabilities = [ "CVE-2023-33976" ]; 453 + broken = true || # most likely needs dealing with protobuf/abseil updates 454 + !(xlaSupport -> cudaSupport) || python.pythonVersion == "3.11"; 452 455 } // lib.optionalAttrs stdenv.isDarwin { 453 456 timeout = 86400; # 24 hours 454 457 maxSilent = 14400; # 4h, double the default of 7200s