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

Configure Feed

Select the types of activity you want to include in your feed.

treewide: drop support for 32‐bit Darwin

It’s dead, Jim.

Emily 1e6ab343 235ddf16

+3 -34
+2
doc/release-notes/rl-2505.section.md
··· 81 81 82 82 - `i3status-rust`-package no longer enables `notmuch` by default. It can be enabled via `withNotmuch`. 83 83 84 + - All support for 32‐bit Darwin systems has been dropped. 85 + 84 86 - Default ICU version updated from 74 to 76 85 87 86 88 - Apache Kafka was updated to `>= 4.0.0`. Please note that this is the first release which operates
-2
lib/systems/doubles.nix
··· 12 12 13 13 # Darwin 14 14 "x86_64-darwin" 15 - "i686-darwin" 16 15 "aarch64-darwin" 17 - "armv7a-darwin" 18 16 19 17 # FreeBSD 20 18 "i686-freebsd"
-19
lib/systems/examples.nix
··· 284 284 useiOSPrebuilt = true; 285 285 }; 286 286 287 - iphone32 = { 288 - config = "armv7a-apple-ios"; 289 - # config = "arm-apple-darwin10"; 290 - darwinSdkVersion = "14.3"; 291 - xcodeVer = "12.3"; 292 - xcodePlatform = "iPhoneOS"; 293 - useiOSPrebuilt = true; 294 - }; 295 - 296 287 iphone64-simulator = { 297 288 config = "x86_64-apple-ios"; 298 289 # config = "x86_64-apple-darwin14"; 299 - darwinSdkVersion = "14.3"; 300 - xcodeVer = "12.3"; 301 - xcodePlatform = "iPhoneSimulator"; 302 - darwinPlatform = "ios-simulator"; 303 - useiOSPrebuilt = true; 304 - }; 305 - 306 - iphone32-simulator = { 307 - config = "i686-apple-ios"; 308 - # config = "i386-apple-darwin11"; 309 290 darwinSdkVersion = "14.3"; 310 291 xcodeVer = "12.3"; 311 292 xcodePlatform = "iPhoneSimulator";
-5
lib/tests/systems.nix
··· 66 66 "armv7l-linux" 67 67 "armv7l-netbsd" 68 68 "arm-none" 69 - "armv7a-darwin" 70 69 ]; 71 70 testarmv7 = mseteq armv7 [ 72 - "armv7a-darwin" 73 71 "armv7a-linux" 74 72 "armv7l-linux" 75 73 "armv7a-netbsd" ··· 82 84 "i686-cygwin" 83 85 "i686-windows" 84 86 "i686-none" 85 - "i686-darwin" 86 87 ]; 87 88 testmips = mseteq mips [ 88 89 "mips-none" ··· 142 145 ]; 143 146 testdarwin = mseteq darwin [ 144 147 "x86_64-darwin" 145 - "i686-darwin" 146 148 "aarch64-darwin" 147 - "armv7a-darwin" 148 149 ]; 149 150 testfreebsd = mseteq freebsd [ 150 151 "aarch64-freebsd"
-2
pkgs/development/compilers/rust/binary.nix
··· 82 82 # Platforms with host tools from 83 83 # https://doc.rust-lang.org/nightly/rustc/platform-support.html 84 84 "x86_64-darwin" 85 - "i686-darwin" 86 85 "aarch64-darwin" 87 86 "i686-freebsd" 88 87 "x86_64-freebsd" ··· 109 110 targetPlatforms = tier1TargetPlatforms ++ [ 110 111 # Platforms without host tools from 111 112 # https://doc.rust-lang.org/nightly/rustc/platform-support.html 112 - "armv7a-darwin" 113 113 "armv5tel-linux" 114 114 "armv7a-linux" 115 115 "m68k-linux"
+1 -3
pkgs/development/libraries/tachyon/default.nix
··· 54 54 else if stdenv.hostPlatform.system == "aarch64-darwin" then 55 55 "macosx" 56 56 else if stdenv.hostPlatform.system == "x86_64-darwin" then 57 - "macosx-thr" 58 - else if stdenv.hostPlatform.system == "i686-darwin" then 59 - "macosx-64-thr" 57 + "macosx-x86-64-thr" 60 58 else if stdenv.hostPlatform.system == "i686-cygwin" then 61 59 "win32" 62 60 else if stdenv.hostPlatform.system == "x86_64-freebsd" then
-2
pkgs/development/python-modules/debugpy/default.nix
··· 84 84 "i686-linux" = "-shared -o attach_linux_x86.so"; 85 85 "aarch64-linux" = "-shared -o attach_linux_arm64.so"; 86 86 "x86_64-darwin" = "-D_REENTRANT -dynamiclib -lc -o attach_x86_64.dylib"; 87 - "i686-darwin" = "-D_REENTRANT -dynamiclib -lc -o attach_x86.dylib"; 88 87 "aarch64-darwin" = "-D_REENTRANT -dynamiclib -lc -o attach_arm64.dylib"; 89 88 } 90 89 .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}") ··· 146 147 "i686-linux" 147 148 "aarch64-linux" 148 149 "x86_64-darwin" 149 - "i686-darwin" 150 150 "aarch64-darwin" 151 151 ]; 152 152 };
-1
pkgs/games/dwarf-fortress/game.nix
··· 41 41 x86_64-linux = "linux"; 42 42 i686-linux = "linux32"; 43 43 x86_64-darwin = "osx"; 44 - i686-darwin = "osx32"; 45 44 x86_64-cygwin = "win"; 46 45 i686-cygwin = "win32"; 47 46 };