diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+### 2.0.19
+
++ Add an override for removing various [DesktopAppInfo](https://hackage.haskell.org/package/gi-gio-2.0.18/docs/GI-Gio-Objects-DesktopAppInfo.html)-related types in macOS and Windows. These are Linux-specific, but they are included by mistake in the Windows and macOS introspection data in glib-2.60.0, see [issue 218](https://github.com/haskell-gi/haskell-gi/issues/218).
+
 ### 2.0.18
 
 + The `parameter` parameter for the [`activate`](https://hackage.haskell.org/package/gi-gio-2.0.18/docs/GI-Gio-Callbacks.html#t:ActionEntryActivateFieldCallback) callback of `ActionEntry` is nullable, but it is not marked as such in the introspection data.
diff --git a/Gio.overrides b/Gio.overrides
--- a/Gio.overrides
+++ b/Gio.overrides
@@ -27,6 +27,24 @@
 # it is not marked as such in the introspection data.
 set-attr Gio/ActionEntry/activate/activate/@parameters/parameter nullable 1
 
+# These are included by mistake in the introspection data of
+# glib-2.60.0, but they are linux-specific.
+if osx
+   delete-node Gio/DesktopAppInfo
+   delete-node Gio/DesktopAppInfoClass
+   delete-node Gio/DesktopAppInfoLookup
+   delete-node Gio/DesktopAppInfoLookupIface
+   delete-node Gio/DesktopAppLaunchCallback
+endif
+
+if windows
+   delete-node Gio/DesktopAppInfo
+   delete-node Gio/DesktopAppInfoClass
+   delete-node Gio/DesktopAppInfoLookup
+   delete-node Gio/DesktopAppInfoLookupIface
+   delete-node Gio/DesktopAppLaunchCallback
+endif
+
 # Not supported on Windows.
 if windows
    ignore DBusMessage.get_unix_fd_list
diff --git a/gi-gio.cabal b/gi-gio.cabal
--- a/gi-gio.cabal
+++ b/gi-gio.cabal
@@ -1,5 +1,5 @@
 name:                 gi-gio
-version:              2.0.18
+version:              2.0.19
 synopsis:             Gio bindings
 description:          Bindings for Gio, autogenerated by haskell-gi.
 homepage:             https://github.com/haskell-gi/haskell-gi
