nixpkgs/pkgs/applications/misc/gpxlab/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, mkDerivation, lib, fetchFromGitHub, substituteAll
, qmake, qttools, qttranslations
}:
2019-08-27 19:00:53 +03:00
mkDerivation rec {
pname = "gpxlab";
version = "0.7.0";
src = fetchFromGitHub {
owner = "BourgeoisLab";
repo = "GPXLab";
rev = "v${version}";
sha256 = "080vnwcciqblfrbfyz9gjhl2lqw1hkdpbgr5qfrlyglkd4ynjd84";
};
patches = (substituteAll {
# See https://github.com/NixOS/nixpkgs/issues/86054
src = ./fix-qttranslations-path.patch;
inherit qttranslations;
});
nativeBuildInputs = [ qmake qttools ];
2019-08-27 19:00:53 +03:00
preConfigure = ''
lrelease GPXLab/locale/*.ts
'';
2020-01-31 00:13:53 +03:00
postInstall = lib.optionalString stdenv.isDarwin ''
mkdir -p $out/Applications
mv GPXLab/GPXLab.app $out/Applications
'';
2019-08-27 19:00:53 +03:00
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.gpl3Only;
2019-08-27 19:00:53 +03:00
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
2019-08-27 19:00:53 +03:00
};
}