summary refs log tree commit diff
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
parent9c724505fa2037a7bd3192ef20aa0035a78e63f5 (diff)
downloadnixpkgs-83979742992859f01a78adc19ff47a4f1c4c6567.tar
nixpkgs-83979742992859f01a78adc19ff47a4f1c4c6567.tar.gz
nixpkgs-83979742992859f01a78adc19ff47a4f1c4c6567.tar.bz2
nixpkgs-83979742992859f01a78adc19ff47a4f1c4c6567.tar.lz
nixpkgs-83979742992859f01a78adc19ff47a4f1c4c6567.tar.xz
nixpkgs-83979742992859f01a78adc19ff47a4f1c4c6567.tar.zst
nixpkgs-83979742992859f01a78adc19ff47a4f1c4c6567.zip
hugin: add wrapGAppsHook
Fixes no Gsettings error following
https://github.com/NixOS/nixpkgs/issues/16285
-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 204cfa387dd..d5feb67f4b1 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" ];