mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
gpxlab: init at 0.7.0
This commit is contained in:
parent
aa4a1b01d5
commit
38294e3051
34
pkgs/applications/misc/gpxlab/default.nix
Normal file
34
pkgs/applications/misc/gpxlab/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ mkDerivation, lib, fetchFromGitHub, qmake, qttools, qttranslations }:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "gpxlab";
|
||||||
|
version = "0.7.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "BourgeoisLab";
|
||||||
|
repo = "GPXLab";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "080vnwcciqblfrbfyz9gjhl2lqw1hkdpbgr5qfrlyglkd4ynjd84";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ qmake ];
|
||||||
|
buildInputs = [ qttools qttranslations ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
lrelease GPXLab/locale/*.ts
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/BourgeoisLab/GPXLab";
|
||||||
|
description = "Program to show and manipulate GPS tracks";
|
||||||
|
longDescription = ''
|
||||||
|
GPXLab is an application to display and manage GPS tracks
|
||||||
|
previously recorded with a GPS tracker.
|
||||||
|
'';
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ sikmir ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -19188,6 +19188,8 @@ in
|
|||||||
|
|
||||||
gpsprune = callPackage ../applications/misc/gpsprune { };
|
gpsprune = callPackage ../applications/misc/gpsprune { };
|
||||||
|
|
||||||
|
gpxlab = libsForQt5.callPackage ../applications/misc/gpxlab { };
|
||||||
|
|
||||||
gpxsee = libsForQt5.callPackage ../applications/misc/gpxsee { };
|
gpxsee = libsForQt5.callPackage ../applications/misc/gpxsee { };
|
||||||
|
|
||||||
gspell = callPackage ../development/libraries/gspell { };
|
gspell = callPackage ../development/libraries/gspell { };
|
||||||
|
Loading…
Reference in New Issue
Block a user