about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-01-25 17:36:19 +0100
committersternenseemann <sternenseemann@systemli.org>2023-01-25 17:37:35 +0100
commit5f32eef7c52f8f7516322b55c5cfd46a38984186 (patch)
treeb3268d682890dd5170e8e12dd30c6bdfb93e1e8d
parent82b7be2138d5343937bd74e191cb502f5748e8bb (diff)
pkgs/sternenseemann/saneterm: fix build with recent g-i changes
gobject-introspectino in nativeBuildInputs will propagate itself (for
runtime) in buildInputs and be correctly available in checkInputs.

There has been a bit of back and forth in upstream with g-i, so let's
hope this sticks!
-rw-r--r--pkgs/sternenseemann/saneterm/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/sternenseemann/saneterm/default.nix b/pkgs/sternenseemann/saneterm/default.nix
index ea4d4521..493ec97f 100644
--- a/pkgs/sternenseemann/saneterm/default.nix
+++ b/pkgs/sternenseemann/saneterm/default.nix
@@ -19,6 +19,7 @@ buildPythonApplication {
 
   nativeBuildInputs = [
     makeWrapper
+    gobject-introspection
   ];
 
   propagatedBuildInputs = [
@@ -27,11 +28,6 @@ buildPythonApplication {
 
   buildInputs = [
     gtk3
-    gobject-introspection
-  ];
-
-  checkInputs = [
-    gobject-introspection # need the setup hook here as well
   ];
 
   postInstall = ''