summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosef Kemetmüller <josef.kemetmueller@gmail.com>2019-06-01 14:17:07 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2019-06-01 13:11:47 +0000
commitbe465351b48fdeb9fd852980df0624c86d6ada8a (patch)
tree4b45d6df5070e960cdec0e9f66d9d68ec15093d7
parent59c1bcc857d87fcad434bb804b80bc03e0382638 (diff)
downloadnixpkgs-be465351b48fdeb9fd852980df0624c86d6ada8a.tar
nixpkgs-be465351b48fdeb9fd852980df0624c86d6ada8a.tar.gz
nixpkgs-be465351b48fdeb9fd852980df0624c86d6ada8a.tar.bz2
nixpkgs-be465351b48fdeb9fd852980df0624c86d6ada8a.tar.lz
nixpkgs-be465351b48fdeb9fd852980df0624c86d6ada8a.tar.xz
nixpkgs-be465351b48fdeb9fd852980df0624c86d6ada8a.tar.zst
nixpkgs-be465351b48fdeb9fd852980df0624c86d6ada8a.zip
gpx-viewer: Add missing libxml2 dependency
-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 f7cfee3e651..a5ee6c8e4ae 100644
--- a/pkgs/applications/misc/gpx-viewer/default.nix
+++ b/pkgs/applications/misc/gpx-viewer/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, intltool, pkgconfig, gnome3, libchamplain, gdl, shared-mime-info, desktop-file-utils, wrapGAppsHook }:
+{ stdenv, fetchurl, intltool, libxml2, pkgconfig, gnome3, libchamplain, gdl, shared-mime-info, desktop-file-utils, wrapGAppsHook }:
 
 stdenv.mkDerivation rec {
   name = "gpx-viewer-${version}";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
     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 ];
+  buildInputs = [ gdl libchamplain gnome3.adwaita-icon-theme libxml2 ];
 
   meta = with stdenv.lib; {
     homepage = https://blog.sarine.nl/tag/gpxviewer/;