mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv, mkDerivation, lib, fetchFromGitHub, substituteAll
|
|
, qmake, qttools, qttranslations
|
|
}:
|
|
|
|
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 ];
|
|
|
|
preConfigure = ''
|
|
lrelease GPXLab/locale/*.ts
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
mkdir -p $out/Applications
|
|
mv GPXLab/GPXLab.app $out/Applications
|
|
'';
|
|
|
|
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;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|