nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit 15f454cf17c85bd57ab0e80740a86caf830d5c1c
parent 363d3c202dd1e5dc8742c7abc96b9b37dcbec926
Author: Nikolay Korotkiy <sikmir@gmail.com>
Date:   Mon, 27 Sep 2021 21:05:54 +0300

Up

Diffstat:
Dpkgs/applications/gpxsee/bin.nix | 32--------------------------------
Mpkgs/default.nix | 2+-
Apkgs/gpx/gpxsee/bin.nix | 32++++++++++++++++++++++++++++++++
3 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/pkgs/applications/gpxsee/bin.nix b/pkgs/applications/gpxsee/bin.nix @@ -1,32 +0,0 @@ -{ lib, stdenv, fetchurl, undmg }: - -stdenv.mkDerivation rec { - pname = "gpxsee-bin"; - version = "9.5"; - - src = fetchurl { - url = "mirror://sourceforge/gpxsee/GPXSee-${version}.dmg"; - hash = "sha256-7w5sPOHGrAQFTr+2J5txlgWQ2M2eyy/+tg4yLZy6IoQ="; - }; - - preferLocalBuild = true; - - nativeBuildInputs = [ undmg ]; - - sourceRoot = "."; - - installPhase = '' - mkdir -p $out/Applications - cp -r *.app $out/Applications - ''; - - meta = with lib; { - description = "GPS log file viewer and analyzer"; - homepage = "https://www.gpxsee.org"; - changelog = "https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes"; - license = licenses.gpl3Only; - maintainers = [ maintainers.sikmir ]; - platforms = [ "x86_64-darwin" ]; - skip.ci = true; - }; -} diff --git a/pkgs/default.nix b/pkgs/default.nix @@ -8,7 +8,6 @@ lib.makeScope newScope ( ### APPLICATIONS goldencheetah-bin = callPackage ./applications/goldencheetah/bin.nix { }; - gpxsee-bin = callPackage ./applications/gpxsee/bin.nix { }; i18n-editor-bin = callPackage ./applications/i18n-editor { jre = pkgs.jdk11; }; iterm2-bin = callPackage ./applications/iterm2/bin.nix { }; klogg = libsForQt5.callPackage ./applications/misc/klogg { }; @@ -219,6 +218,7 @@ lib.makeScope newScope ( gpx-layer = perlPackages.callPackage ./gpx/gpx-layer { }; gpx2yaml = callPackage ./gpx/gpx2yaml { }; gpxchart = callPackage ./gpx/gpxchart { }; + gpxsee-bin = callPackage ./gpx/gpxsee/bin.nix { }; gpxtools = callPackage ./gpx/gpxtools { }; gpxtrackposter = callPackage ./gpx/gpxtrackposter { }; diff --git a/pkgs/gpx/gpxsee/bin.nix b/pkgs/gpx/gpxsee/bin.nix @@ -0,0 +1,32 @@ +{ lib, stdenv, fetchurl, undmg }: + +stdenv.mkDerivation rec { + pname = "gpxsee-bin"; + version = "9.7"; + + src = fetchurl { + url = "mirror://sourceforge/gpxsee/GPXSee-${version}.dmg"; + hash = "sha256-4rP3HPAn81vPGYwJSWO6cvZKPbkEwdzKucTQuEDBKac="; + }; + + preferLocalBuild = true; + + nativeBuildInputs = [ undmg ]; + + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/Applications + cp -r *.app $out/Applications + ''; + + meta = with lib; { + description = "GPS log file viewer and analyzer"; + homepage = "https://www.gpxsee.org"; + changelog = "https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes"; + license = licenses.gpl3Only; + maintainers = [ maintainers.sikmir ]; + platforms = [ "x86_64-darwin" ]; + skip.ci = true; + }; +}