darwin: Disable some more packages that have never built

streamripper: https://hydra.nixos.org/build/61726659
racket: https://hydra.nixos.org/build/61750850
radare: https://hydra.nixos.org/build/61756146
stockfish: https://hydra.nixos.org/build/61726172

+4 -4
+1 -1
pkgs/applications/audio/streamripper/default.nix
··· 15 15 homepage = http://streamripper.sourceforge.net/; 16 16 description = "Application that lets you record streaming mp3 to your hard drive"; 17 17 license = licenses.gpl2; 18 - platforms = platforms.unix; 18 + platforms = platforms.linux; 19 19 maintainers = with maintainers; [ the-kenny ]; 20 20 }; 21 21 }
+1 -1
pkgs/development/interpreters/racket/default.nix
··· 82 82 homepage = http://racket-lang.org/; 83 83 license = licenses.lgpl3; 84 84 maintainers = with maintainers; [ kkallio henrytill vrthra ]; 85 - platforms = platforms.x86_64; 85 + platforms = [ "x86_64-linux" ]; 86 86 }; 87 87 }
+1 -1
pkgs/development/tools/analysis/radare/default.nix
··· 32 32 homepage = http://radare.org/; 33 33 license = stdenv.lib.licenses.gpl2Plus; 34 34 maintainers = with stdenv.lib.maintainers; [viric]; 35 - platforms = with stdenv.lib.platforms; all; 35 + platforms = with stdenv.lib.platforms; linux; 36 36 }; 37 37 }
+1 -1
pkgs/games/stockfish/default.nix
··· 29 29 much stronger than the best human chess grandmasters. 30 30 ''; 31 31 maintainers = with maintainers; [ luispedro peti ]; 32 - platforms = with platforms; i686 ++ x86_64; 32 + platforms = ["x86_64-linux" "i686-linux"]; 33 33 license = licenses.gpl2; 34 34 }; 35 35