Add Viking, a GPS trace editor.
svn path=/nixpkgs/trunk/; revision=15804
This commit is contained in:
parent
da25b2498b
commit
aa2fe97649
|
@ -0,0 +1,33 @@
|
||||||
|
{ fetchurl, stdenv, pkgconfig, intltool, gettext, gtk, expat, curl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "viking-0.9.8";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/viking/${name}.tar.gz";
|
||||||
|
sha256 = "1is8g6ld5pd13iiv9qm8526q1cblg01pqyakg52sd6k7fys7dz2d";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig intltool gettext gtk expat curl ];
|
||||||
|
|
||||||
|
# XXX: Remove this once we have `gpsd' (http://gpsd.berlios.de/).
|
||||||
|
configureFlags = "--disable-realtime-gps-tracking";
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Viking, a GPS data editor and analyzer";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
Viking is a free/open source program to manage GPS data. You
|
||||||
|
can import and plot tracks and waypoints, show Openstreetmaps
|
||||||
|
and/or Terraserver maps under it, download geocaches for an area
|
||||||
|
on the map, make new tracks and waypoints, see real-time GPS
|
||||||
|
position, etc.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://viking.sourceforge.net/;
|
||||||
|
|
||||||
|
license = "GPLv2+";
|
||||||
|
};
|
||||||
|
}
|
|
@ -1355,6 +1355,11 @@ let
|
||||||
inherit fetchurl stdenv ucl zlib;
|
inherit fetchurl stdenv ucl zlib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
viking = import ../applications/misc/viking {
|
||||||
|
inherit fetchurl stdenv pkgconfig intltool gettext expat curl;
|
||||||
|
inherit (gtkLibs) gtk;
|
||||||
|
};
|
||||||
|
|
||||||
vpnc = import ../tools/networking/vpnc {
|
vpnc = import ../tools/networking/vpnc {
|
||||||
inherit fetchurl stdenv libgcrypt perl gawk
|
inherit fetchurl stdenv libgcrypt perl gawk
|
||||||
nettools makeWrapper;
|
nettools makeWrapper;
|
||||||
|
|
Loading…
Reference in New Issue