From 79aa4224d257bd6e8166ae06f883323516e47d47 Mon Sep 17 00:00:00 2001 From: Sean Borg Date: Wed, 22 Feb 2023 19:12:44 +0000 Subject: [PATCH] add wrapGAppsHook to hugin Trying to fix no Gsettings error https://github.com/NixOS/nixpkgs/issues/16285 --- pkgs/applications/graphics/hugin/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/hugin/default.nix b/pkgs/applications/graphics/hugin/default.nix index f4d424b3fc30db5..e697268a36dd6e9 100644 --- a/pkgs/applications/graphics/hugin/default.nix +++ b/pkgs/applications/graphics/hugin/default.nix @@ -30,6 +30,7 @@ , perlPackages , sqlite , vigra +, wrapGAppsHook , wxGTK , zlib }: @@ -70,7 +71,7 @@ stdenv.mkDerivation rec { zlib ]; - nativeBuildInputs = [ cmake makeWrapper pkg-config ]; + nativeBuildInputs = [ cmake makeWrapper pkg-config wrapGAppsHook ]; # disable installation of the python scripting interface cmakeFlags = [ "-DBUILD_HSI:BOOl=OFF" ];