gktcord4: add nativeBuildInput wrapGappsHook

In #200179 we noticed some application crashes triggered during file
uploads: "Settings schema 'org.gtk.gtk4.Settings.FileChooser' is not
installed". This appears to be because we failed to wrapGAppsHook, this
has been corrected.
This commit is contained in:
Henri Menke
2022-12-03 00:48:59 +00:00
committed by Colin Arnott
parent e461e83aa7
commit 512aca68d3
+3 -1
View File
@@ -9,6 +9,7 @@
, lib
, pango
, pkg-config
, wrapGAppsHook4
}:
buildGoModule rec {
@@ -25,6 +26,7 @@ buildGoModule rec {
nativeBuildInputs = [
gobject-introspection
pkg-config
wrapGAppsHook4
];
buildInputs = [
@@ -42,6 +44,6 @@ buildGoModule rec {
description = "GTK4 Discord client in Go, attempt #4.";
homepage = "https://github.com/diamondburned/gtkcord4";
license = licenses.gpl3Only;
maintainers = with maintainers; [ urandom ];
maintainers = with maintainers; [ hmenke urandom ];
};
}