summary refs log tree commit diff
path: root/pkgs/applications/graphics/geeqie/default.nix
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2019-05-27 21:30:15 +0300
committergnidorah <gnidorah@users.noreply.github.com>2019-05-27 21:31:43 +0300
commitfa7d2ca892c58266d4bda0821dd4902300e37f4e (patch)
tree887a423cfe273f61698dcd5d57b08be530eda468 /pkgs/applications/graphics/geeqie/default.nix
parent68cae99370b22db4b4fb62b6b3828496c4a37f9d (diff)
downloadnixpkgs-fa7d2ca892c58266d4bda0821dd4902300e37f4e.tar
nixpkgs-fa7d2ca892c58266d4bda0821dd4902300e37f4e.tar.gz
nixpkgs-fa7d2ca892c58266d4bda0821dd4902300e37f4e.tar.bz2
nixpkgs-fa7d2ca892c58266d4bda0821dd4902300e37f4e.tar.lz
nixpkgs-fa7d2ca892c58266d4bda0821dd4902300e37f4e.tar.xz
nixpkgs-fa7d2ca892c58266d4bda0821dd4902300e37f4e.tar.zst
nixpkgs-fa7d2ca892c58266d4bda0821dd4902300e37f4e.zip
geeqie: use wrapGAppsHook
Diffstat (limited to 'pkgs/applications/graphics/geeqie/default.nix')
-rw-r--r--pkgs/applications/graphics/geeqie/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/geeqie/default.nix b/pkgs/applications/graphics/geeqie/default.nix
index a1ea88da84b..4e1e7138e77 100644
--- a/pkgs/applications/graphics/geeqie/default.nix
+++ b/pkgs/applications/graphics/geeqie/default.nix
@@ -1,5 +1,6 @@
 { stdenv, fetchurl, pkgconfig, autoconf, automake, gettext, intltool
 , gtk3, lcms2, exiv2, libchamplain, clutter-gtk, ffmpegthumbnailer, fbida
+, wrapGAppsHook
 }:
 
 stdenv.mkDerivation rec {
@@ -16,7 +17,9 @@ stdenv.mkDerivation rec {
 
   preConfigure = "./autogen.sh";
 
-  nativeBuildInputs = [ pkgconfig autoconf automake gettext intltool ];
+  nativeBuildInputs = [ pkgconfig autoconf automake gettext intltool
+    wrapGAppsHook
+  ];
   buildInputs = [
     gtk3 lcms2 exiv2 libchamplain clutter-gtk ffmpegthumbnailer fbida
   ];