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.
This commit is contained in:
Sebastián Mancilla 2022-07-09 23:31:19 -04:00
parent 7802f1b647
commit fdfd961ee1

View File

@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
buildInputs = [ gtk3 ]; buildInputs = [ gtk3 ];
meta = with lib; { meta = with lib; {
broken = stdenv.isDarwin;
description = "Gtk Analog Wave viewer"; description = "Gtk Analog Wave viewer";
longDescription = '' longDescription = ''
Gaw is a software tool for displaying analog waveforms from Gaw is a software tool for displaying analog waveforms from
@ -30,6 +29,6 @@ stdenv.mkDerivation rec {
homepage = "http://gaw.tuxfamily.org"; homepage = "http://gaw.tuxfamily.org";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ fbeffa ]; maintainers = with maintainers; [ fbeffa ];
platforms = platforms.all; platforms = platforms.linux;
}; };
} }