gaw: mark as Linux-only

The error when building on Darwin is:

sockcon.c:19:10: fatal error: 'linux/tcp.h' file not found

So, it uses Linux-specific headers.

+1 -2
+1 -2
pkgs/applications/science/electronics/gaw/default.nix
··· 19 buildInputs = [ gtk3 ]; 20 21 meta = with lib; { 22 - broken = stdenv.isDarwin; 23 description = "Gtk Analog Wave viewer"; 24 longDescription = '' 25 Gaw is a software tool for displaying analog waveforms from ··· 30 homepage = "http://gaw.tuxfamily.org"; 31 license = licenses.gpl2Plus; 32 maintainers = with maintainers; [ fbeffa ]; 33 - platforms = platforms.all; 34 }; 35 }
··· 19 buildInputs = [ gtk3 ]; 20 21 meta = with lib; { 22 description = "Gtk Analog Wave viewer"; 23 longDescription = '' 24 Gaw is a software tool for displaying analog waveforms from ··· 29 homepage = "http://gaw.tuxfamily.org"; 30 license = licenses.gpl2Plus; 31 maintainers = with maintainers; [ fbeffa ]; 32 + platforms = platforms.linux; 33 }; 34 }