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