about summary refs log tree commit diff
path: root/pkgs/applications/graphics/hugin
diff options
context:
space:
mode:
authorSean Borg <sean@seanborg.tech>2023-02-22 19:12:44 +0000
committerSean Borg <sean@seanborg.tech>2023-03-26 17:03:47 +0100
commit83979742992859f01a78adc19ff47a4f1c4c6567 (patch)
tree3997f1140e01d059a9f6b5d0fc744ce08a89e1d3 /pkgs/applications/graphics/hugin
parent9c724505fa2037a7bd3192ef20aa0035a78e63f5 (diff)
hugin: add wrapGAppsHook
Fixes no Gsettings error following
https://github.com/NixOS/nixpkgs/issues/16285
Diffstat (limited to 'pkgs/applications/graphics/hugin')
-rw-r--r--pkgs/applications/graphics/hugin/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/hugin/default.nix b/pkgs/applications/graphics/hugin/default.nix
index 204cfa387dd39..d5feb67f4b15d 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" ];