From 5f7a91e49ba6aca334be410e94f1153aa177e5ff Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Thu, 24 Feb 2022 20:21:11 +0100 Subject: [PATCH] gramps: disable strictDeps This fixes a crash when opening file pickers in KDE. See #149812 and #56943. See https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-hooks-gobject-introspection --- pkgs/applications/misc/gramps/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/misc/gramps/default.nix b/pkgs/applications/misc/gramps/default.nix index 531ce423737..7365d297e3b 100644 --- a/pkgs/applications/misc/gramps/default.nix +++ b/pkgs/applications/misc/gramps/default.nix @@ -55,6 +55,10 @@ in buildPythonApplication rec { runHook postInstall ''; + # https://github.com/NixOS/nixpkgs/issues/149812 + # https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-hooks-gobject-introspection + strictDeps = false; + meta = with lib; { description = "Genealogy software"; homepage = "https://gramps-project.org";