forked from mirrors/nixpkgs
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:
parent
7802f1b647
commit
fdfd961ee1
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue