nixpkgs/pkgs/applications/misc/viking/default.nix

49 lines
1.6 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, makeWrapper, pkgconfig, intltool, gettext, gtk2, expat, curl
2012-07-01 15:32:03 +00:00
, gpsd, bc, file, gnome_doc_utils, libexif, libxml2, libxslt, scrollkeeper
2016-01-03 14:39:52 +00:00
, docbook_xml_dtd_412, gexiv2, sqlite, gpsbabel, expect }:
2015-09-06 19:43:27 +00:00
stdenv.mkDerivation rec {
2012-07-01 15:32:03 +00:00
name = "viking-${version}";
2016-01-03 14:39:52 +00:00
version = "1.6.2";
src = fetchurl {
2015-09-06 19:43:27 +00:00
url = "mirror://sourceforge/viking/viking/viking-${version}.tar.bz2";
2016-01-03 14:39:52 +00:00
sha256 = "09kq0sxs2czps0d6xzgkkp41746v44ip63m72qvfs7rsrnqj7qnz";
};
buildInputs = [ makeWrapper pkgconfig intltool gettext gtk2 expat curl gpsd bc file gnome_doc_utils
2015-09-06 19:43:27 +00:00
libexif libxml2 libxslt scrollkeeper docbook_xml_dtd_412 gexiv2 sqlite
];
2015-09-06 19:43:27 +00:00
configureFlags = [ "--disable-scrollkeeper --disable-mapnik" ];
2012-07-01 15:32:03 +00:00
2015-09-06 19:43:27 +00:00
preBuild = ''
sed -i help/Makefile \
-e 's|--noout|--noout --nonet --path "${scrollkeeper}/share/xml/scrollkeeper/dtds"|g'
sed -i help/Makefile -e 's|--postvalid||g'
'';
doCheck = true;
2015-09-06 19:43:27 +00:00
postInstall = ''
wrapProgram $out/bin/viking \
2016-01-03 14:39:52 +00:00
--prefix PATH : "${gpsbabel}/bin" \
--prefix PATH : "${expect}/bin"
2015-09-06 19:43:27 +00:00
'';
2015-09-06 19:43:27 +00:00
meta = with stdenv.lib; {
description = "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/;
2015-09-06 19:43:27 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
}