biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / gpx-viewer / default.nix
bloba04cf4ec7c7730cde85f85ad71a8ffa3331b2bc8
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , fetchpatch
5 , libxml2
6 , meson
7 , ninja
8 , vala
9 , pkg-config
10 , adwaita-icon-theme
11 , libchamplain
12 , gdl
13 , wrapGAppsHook3
16 stdenv.mkDerivation rec {
17   pname = "gpx-viewer";
18   version = "0.5.0";
20   src = fetchFromGitHub {
21     owner = "DaveDavenport";
22     repo = "gpx-viewer";
23     rev = version;
24     hash = "sha256-6AChX0UEIrQExaq3oo9Be5Sr13+POHFph7pZegqcjio=";
25   };
27   patches = [
28     # Compile with libchamplain>=0.12.21
29     (fetchpatch {
30       url = "https://github.com/DaveDavenport/gpx-viewer/commit/12ed6003bdad840586351bdb4e00c18719873c0e.patch";
31       hash = "sha256-2/r0M3Yxj+vWgny1Pd5G7NYMb0uC/ByZ7y3tqLVccOc=";
32     })
33   ];
35   nativeBuildInputs = [
36     meson
37     ninja
38     pkg-config
39     vala
40     wrapGAppsHook3 # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system
41   ];
43   buildInputs = [
44     gdl
45     libchamplain
46     adwaita-icon-theme
47     libxml2
48   ];
50   hardeningDisable = [ "format" ];
52   meta = with lib; {
53     homepage = "https://blog.sarine.nl/tag/gpxviewer/";
54     description = "Simple tool to visualize tracks and waypoints stored in a gpx file";
55     mainProgram = "gpx-viewer";
56     changelog = "https://github.com/DaveDavenport/gpx-viewer/blob/${src.rev}/NEWS";
57     platforms = with platforms; linux;
58     license = licenses.gpl2Plus;
59     maintainers = with maintainers; [ dotlambda ];
60   };