From 648bcc8f4288d5526e4d347c4ef404ea51c1d8f6 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 6 Sep 2022 22:38:15 +0200 Subject: [PATCH] pympress: Move gobject-introspection to nativeBuildInputs - Previously the software would fail to run with an error showing that it couldn't find gobject-introspection typelib files for GTK3 - By adding gobject-introspection to nativeBuildInputs, the gi typelib path is set so that we have all of the typelibs we need Co-authored-by: Skyler Grey --- pkgs/applications/office/pympress/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/office/pympress/default.nix b/pkgs/applications/office/pympress/default.nix index 4d5f174f64a0..1343f2e8d392 100644 --- a/pkgs/applications/office/pympress/default.nix +++ b/pkgs/applications/office/pympress/default.nix @@ -21,11 +21,11 @@ python3Packages.buildPythonApplication rec { nativeBuildInputs = [ wrapGAppsHook + gobject-introspection ]; buildInputs = [ gtk3 - gobject-introspection poppler_gi ] ++ lib.optional withGstreamer libcanberra-gtk3;