Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: faab2914f3c3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 67a71b6fca74
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Jan 24, 2020

  1. tangogps: drop at 0.99.2

    tangogps is abandoned. It looks like it this is the case since the early
    2010s. foxtrotgps is a fork, that still is maintained.
    wucke13 committed Jan 24, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    9a88d22 View commit details

Commits on Jan 27, 2020

  1. foxtrotgps: init at 1.2.2

    wucke13 committed Jan 27, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    f186045 View commit details
  2. Merge pull request #78436 from wucke13/foxtrotgps

    foxtrotgps: init at 1.2.2
    markuskowa authored Jan 27, 2020
    Copy the full SHA
    67a71b6 View commit details
Showing with 43 additions and 50 deletions.
  1. +40 −0 pkgs/applications/misc/foxtrotgps/default.nix
  2. +0 −46 pkgs/applications/misc/tangogps/default.nix
  3. +1 −0 pkgs/top-level/aliases.nix
  4. +2 −4 pkgs/top-level/all-packages.nix
40 changes: 40 additions & 0 deletions pkgs/applications/misc/foxtrotgps/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{ fetchurl, stdenv, pkg-config, wrapGAppsHook, curl, gnome2, gpsd, gtk2
, intltool, libexif, python3Packages, sqlite }:

stdenv.mkDerivation rec {
pname = "foxtrotgps";
version = "1.2.2";

src = fetchurl {
url = "https://www.foxtrotgps.org/releases/foxtrotgps-${version}.tar.xz";
sha256 = "0grn35j5kwc286dxx18fv32qa330xmalqliwy6zirxmj6dffvrkg";
};

nativeBuildInputs = [ pkg-config wrapGAppsHook ];

buildInputs = [
curl.dev
gnome2.libglade.dev
gpsd
gtk2.dev
intltool
libexif
sqlite.dev
(python3Packages.python.withPackages (pythonPackages: with python3Packages;
[ beautifulsoup4 feedparser sqlalchemy ]))
];

meta = with stdenv.lib; {
description = "GPS/GIS application optimized for small screens";
longDescription = ''
An easy to use, free & open-source GPS/GIS application that works well on
small screens, and is especially suited to touch input. It spun off of
tangoGPS in 2010 with a focus on cooperation and fostering community
innovation.
'';
homepage = "https://www.foxtrotgps.org/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ wucke13 ];
};
}
46 changes: 0 additions & 46 deletions pkgs/applications/misc/tangogps/default.nix

This file was deleted.

1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
@@ -412,6 +412,7 @@ mapAliases ({
system_config_printer = system-config-printer; # added 2016-01-03
systool = sysfsutils; # added 2018-04-25
tahoelafs = tahoe-lafs; # added 2018-03-26
tangogps = foxtrotgps; # added 2020-01-26
telepathy_farstream = telepathy-farstream; # added 2018-02-25
telepathy_gabble = telepathy-gabble; # added 2018-02-25
telepathy_glib = telepathy-glib; # added 2018-02-25
6 changes: 2 additions & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -19230,6 +19230,8 @@ in

formatter = callPackage ../applications/misc/formatter { };

foxtrotgps = callPackage ../applications/misc/foxtrotgps { };

fractal = callPackage ../applications/networking/instant-messengers/fractal { };

freecad = qt5.callPackage ../applications/graphics/freecad { mpi = openmpi; };
@@ -21657,10 +21659,6 @@ in
inherit (darwin.apple_sdk.frameworks) Security;
};

tangogps = callPackage ../applications/misc/tangogps {
gconf = gnome2.GConf;
};

tambura = callPackage ../applications/audio/tambura { };

teams = callPackage ../applications/networking/instant-messengers/teams { };