summary refs log tree commit diff
path: root/pkgs/tools/misc/trackma
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-12-29 18:40:14 +0200
committerArtturin <Artturin@artturin.com>2023-02-17 20:26:13 +0200
commitcadffcfe5053c1cc73f2a56e12bd41b762b5b653 (patch)
tree627bd5d53a4d385f9fc73ab784c7d30ca5aaac1e /pkgs/tools/misc/trackma
parentfa169bb239d7b2d860af851573569182ee5e0127 (diff)
downloadnixpkgs-cadffcfe5053c1cc73f2a56e12bd41b762b5b653.tar
nixpkgs-cadffcfe5053c1cc73f2a56e12bd41b762b5b653.tar.gz
nixpkgs-cadffcfe5053c1cc73f2a56e12bd41b762b5b653.tar.bz2
nixpkgs-cadffcfe5053c1cc73f2a56e12bd41b762b5b653.tar.lz
nixpkgs-cadffcfe5053c1cc73f2a56e12bd41b762b5b653.tar.xz
nixpkgs-cadffcfe5053c1cc73f2a56e12bd41b762b5b653.tar.zst
nixpkgs-cadffcfe5053c1cc73f2a56e12bd41b762b5b653.zip
treewide: remove issue #56943 workarounds
checked with diffoscope+difflog and launching the programs

i have fixed that issue in my other gir PRs
Diffstat (limited to 'pkgs/tools/misc/trackma')
-rw-r--r--pkgs/tools/misc/trackma/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/tools/misc/trackma/default.nix b/pkgs/tools/misc/trackma/default.nix
index e3d6322b85e..855585dde3f 100644
--- a/pkgs/tools/misc/trackma/default.nix
+++ b/pkgs/tools/misc/trackma/default.nix
@@ -35,10 +35,10 @@ python3.pkgs.buildPythonApplication rec {
   };
 
   nativeBuildInputs = [ copyDesktopItems ]
-    ++ lib.optionals withGTK [ wrapGAppsHook ]
+    ++ lib.optionals withGTK [ wrapGAppsHook gobject-introspection ]
     ++ lib.optionals withQT [ qt5.wrapQtAppsHook ];
 
-  buildInputs = lib.optionals withGTK [ glib gobject-introspection gtk3 ];
+  buildInputs = lib.optionals withGTK [ glib gtk3 ];
 
   propagatedBuildInputs = with python3.pkgs; ([ urllib3 ]
     ++ lib.optionals withQT [ pyqt5 ]
@@ -47,9 +47,6 @@ python3.pkgs.buildPythonApplication rec {
     ++ lib.optionals stdenv.isLinux [ dbus-python pygobject3 pyinotify ]
     ++ lib.optionals (withGTK || withQT) [ pillow ]);
 
-  # broken with gobject-introspection setup hook, see https://github.com/NixOS/nixpkgs/issues/56943
-  strictDeps = false;
-
   dontWrapQtApps = true;
   dontWrapGApps = true;