Merge pull request #180920 from smancill/gaw-platforms

gaw: mark as Linux-only
This commit is contained in:
Rick van Schijndel 2022-07-10 13:45:01 +02:00 committed by GitHub
commit 654cb9069b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
};
}