summary refs log tree commit diff
path: root/pkgs/applications/misc/gpxsee/default.nix
blob: 8c9833ae40d1c8a6c27a1f36bed2fe99c80c90ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, fetchFromGitHub, qmake, qttools, makeWrapper }:

stdenv.mkDerivation rec {
  pname = "gpxsee";
  version = "7.9";

  src = fetchFromGitHub {
    owner = "tumic0";
    repo = "GPXSee";
    rev = version;
    sha256 = "029l5dhc9nnxiw7p0s4gyfkcqw709z7lz96aq8krs75mfk4fv07k";
  };

  nativeBuildInputs = [ qmake makeWrapper ];
  buildInputs = [ qttools ];

  preConfigure = ''
    lrelease lang/*.ts
  '';

  enableParallelBuilding = true;

  postInstall = ''
    wrapProgram $out/bin/gpxsee \
      --prefix XDG_DATA_DIRS ":" $out/share
  '';

  meta = with stdenv.lib; {
    homepage = https://www.gpxsee.org/;
    description = "GPS log file viewer and analyzer";
    longDescription = ''
      GPXSee is a Qt-based GPS log file viewer and analyzer that supports
      all common GPS log file formats.
    '';
    license = licenses.gpl3;
    maintainers = [ maintainers.womfoo ];
    platforms = platforms.linux;
  };
}