gpxsee: 7.22 -> 7.25
This commit is contained in:
parent
74f5358f13
commit
2c398a1b9d
|
@ -1,24 +1,23 @@
|
||||||
{ stdenv, mkDerivation, lib, fetchFromGitHub, qmake, qttools }:
|
{ stdenv, mkDerivation, fetchFromGitHub, qmake, qttools }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "gpxsee";
|
pname = "gpxsee";
|
||||||
version = "7.22";
|
version = "7.25";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tumic0";
|
owner = "tumic0";
|
||||||
repo = "GPXSee";
|
repo = "GPXSee";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0gxkx255d8cn5076ync731cdygwvi95rxv463pd4rdw5srbr0gm5";
|
sha256 = "0lml3hz2zxljl9j5wnh7bn9bj8k9v3wf6bk3g77x9nnarsmw0fcx";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake ];
|
nativeBuildInputs = [ qmake qttools ];
|
||||||
buildInputs = [ qttools ];
|
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
lrelease lang/*.ts
|
lrelease lang/*.ts
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = lib.optionalString stdenv.isDarwin ''
|
postInstall = with stdenv; lib.optionalString isDarwin ''
|
||||||
mkdir -p $out/Applications
|
mkdir -p $out/Applications
|
||||||
mv GPXSee.app $out/Applications
|
mv GPXSee.app $out/Applications
|
||||||
wrapQtApp $out/Applications/GPXSee.app/Contents/MacOS/GPXSee
|
wrapQtApp $out/Applications/GPXSee.app/Contents/MacOS/GPXSee
|
||||||
|
@ -26,8 +25,8 @@ mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://www.gpxsee.org/;
|
homepage = "https://www.gpxsee.org/";
|
||||||
description = "GPS log file viewer and analyzer";
|
description = "GPS log file viewer and analyzer";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GPXSee is a Qt-based GPS log file viewer and analyzer that supports
|
GPXSee is a Qt-based GPS log file viewer and analyzer that supports
|
||||||
|
|
Loading…
Reference in New Issue