summary refs log tree commit diff
path: root/pkgs/applications/misc/gpx-viewer
diff options
context:
space:
mode:
authorGuillaume Maudoux <guillaume.maudoux@uclouvain.be>2019-07-31 15:14:44 +0200
committerGuillaume Maudoux <guillaume.maudoux@uclouvain.be>2019-07-31 15:14:44 +0200
commit2f3be07d402adea719d0e92773a9766f69b9fad2 (patch)
tree83ebb61c4e2b7e13fb02f0c76fee9ff84bcc7de8 /pkgs/applications/misc/gpx-viewer
parent4f6bd588662fe4221b2c12a0fd3918e0e6f98cd8 (diff)
downloadnixpkgs-2f3be07d402adea719d0e92773a9766f69b9fad2.tar
nixpkgs-2f3be07d402adea719d0e92773a9766f69b9fad2.tar.gz
nixpkgs-2f3be07d402adea719d0e92773a9766f69b9fad2.tar.bz2
nixpkgs-2f3be07d402adea719d0e92773a9766f69b9fad2.tar.lz
nixpkgs-2f3be07d402adea719d0e92773a9766f69b9fad2.tar.xz
nixpkgs-2f3be07d402adea719d0e92773a9766f69b9fad2.tar.zst
nixpkgs-2f3be07d402adea719d0e92773a9766f69b9fad2.zip
gpx-viewer: avoid generating a mime database
Diffstat (limited to 'pkgs/applications/misc/gpx-viewer')
-rw-r--r--pkgs/applications/misc/gpx-viewer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/gpx-viewer/default.nix b/pkgs/applications/misc/gpx-viewer/default.nix
index a5ee6c8e4ae..735818171e8 100644
--- a/pkgs/applications/misc/gpx-viewer/default.nix
+++ b/pkgs/applications/misc/gpx-viewer/default.nix
@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
   };
   patchFlags = [ "-p0" ];
 
+  configureFlags = [ "--disable-database-updates" ];
+
   nativeBuildInputs = [
     intltool pkgconfig
-    shared-mime-info # For update-mime-database
-    desktop-file-utils # For update-desktop-database
     wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system
   ];
   buildInputs = [ gdl libchamplain gnome3.adwaita-icon-theme libxml2 ];