summary refs log blame commit diff
path: root/pkgs/applications/misc/gpxsee/default.nix
blob: 9a9edba512aade156261439ce0f0d9fb5c06b52b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                       
 
                  
                   
                   




                         
                                                                    

    
                                
                            


                      

     

                                
                    
                                       
                                                     
                        

                                                                         
       
                            
                                                      

                                
 
{ mkDerivation, lib, fetchFromGitHub, qmake, qttools }:

mkDerivation rec {
  pname = "gpxsee";
  version = "7.18";

  src = fetchFromGitHub {
    owner = "tumic0";
    repo = "GPXSee";
    rev = version;
    sha256 = "1z3knfqfv0rwsq66adk0qngw1r500yvy4z259bygqkzbn2l5fcjk";
  };

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

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

  enableParallelBuilding = true;

  meta = with 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 = with maintainers; [ womfoo sikmir ];
    platforms = platforms.linux;
  };
}