2014-10-29 09:57:50 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
gnu: Move 'which' to (gnu packages base).
* gnu/packages/which.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove it.
* gnu/packages/base.scm (which): New variable.
* gnu/packages/aspell.scm, gnu/packages/audio.scm,
gnu/packages/autogen.scm, gnu/packages/cdrom.scm,
gnu/packages/compression.scm, gnu/packages/datamash.scm,
gnu/packages/games.scm, gnu/packages/glib.scm,
gnu/packages/gnu-pw-mgr.scm, gnu/packages/gnutls.scm,
gnu/packages/gps.scm, gnu/packages/guile.scm,
gnu/packages/java.scm, gnu/packages/libevent.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/node.scm, gnu/packages/ntp.scm,
gnu/packages/orpheus.scm, gnu/packages/pciutils.scm,
gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/sawfish.scm,
gnu/packages/scheme.scm, gnu/packages/ssh.scm,
gnu/packages/statistics.scm, gnu/packages/texlive.scm,
gnu/packages/wdiff.scm: Adjust accordingly.
2015-03-04 11:21:21 -05:00
|
|
|
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2020-04-22 16:06:33 -04:00
|
|
|
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
2020-06-05 23:15:15 -04:00
|
|
|
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-02-05 09:19:41 -05:00
|
|
|
;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com>
|
2020-03-04 12:27:22 -05:00
|
|
|
;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
|
2020-04-05 17:31:54 -04:00
|
|
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
2020-07-24 05:57:18 -04:00
|
|
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
2014-10-29 09:57:50 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages gps)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2014-10-29 12:58:42 -04:00
|
|
|
#:use-module (guix git-download)
|
2014-10-29 09:57:50 -04:00
|
|
|
#:use-module (guix build-system gnu)
|
2020-03-04 12:27:22 -05:00
|
|
|
#:use-module (guix build-system scons)
|
2014-10-29 09:57:50 -04:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2020-03-17 08:27:56 -04:00
|
|
|
#:use-module (guix utils)
|
2018-02-05 10:50:14 -05:00
|
|
|
#:use-module (gnu packages)
|
2020-03-17 08:27:56 -04:00
|
|
|
#:use-module (gnu packages algebra)
|
gnu: Move 'which' to (gnu packages base).
* gnu/packages/which.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove it.
* gnu/packages/base.scm (which): New variable.
* gnu/packages/aspell.scm, gnu/packages/audio.scm,
gnu/packages/autogen.scm, gnu/packages/cdrom.scm,
gnu/packages/compression.scm, gnu/packages/datamash.scm,
gnu/packages/games.scm, gnu/packages/glib.scm,
gnu/packages/gnu-pw-mgr.scm, gnu/packages/gnutls.scm,
gnu/packages/gps.scm, gnu/packages/guile.scm,
gnu/packages/java.scm, gnu/packages/libevent.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/node.scm, gnu/packages/ntp.scm,
gnu/packages/orpheus.scm, gnu/packages/pciutils.scm,
gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/sawfish.scm,
gnu/packages/scheme.scm, gnu/packages/ssh.scm,
gnu/packages/statistics.scm, gnu/packages/texlive.scm,
gnu/packages/wdiff.scm: Adjust accordingly.
2015-03-04 11:21:21 -05:00
|
|
|
#:use-module (gnu packages base)
|
2014-10-29 09:57:50 -04:00
|
|
|
#:use-module (gnu packages compression)
|
2014-10-29 12:58:42 -04:00
|
|
|
#:use-module (gnu packages docbook)
|
2020-03-04 12:27:22 -05:00
|
|
|
#:use-module (gnu packages glib)
|
2014-10-29 12:58:42 -04:00
|
|
|
#:use-module (gnu packages gtk)
|
2020-03-04 12:27:22 -05:00
|
|
|
#:use-module (gnu packages image)
|
|
|
|
#:use-module (gnu packages libusb)
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages python)
|
2020-03-17 08:27:56 -04:00
|
|
|
#:use-module (gnu packages python-xyz)
|
gnu: Move sqlite to separate module.
* gnu/packages/databases.scm (sqlite, sqlite-3.26.0, sqlite-with-fts5,
sqlite-with-column-metadata): Move variables from here...
* gnu/packages/sqlite.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/apl.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/code.scm,
gnu/packages/crypto.scm,
gnu/packages/databases.scm,
gnu/packages/dc.scm,
gnu/packages/disk.scm,
gnu/packages/ebook.scm,
gnu/packages/education.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/file-systems.scm,
gnu/packages/freedesktop.scm,
gnu/packages/ftp.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gnome.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/gps.scm,
gnu/packages/guile.scm,
gnu/packages/ibus.scm,
gnu/packages/kerberos.scm,
gnu/packages/kodi.scm,
gnu/packages/lisp.scm,
gnu/packages/mail.scm,
gnu/packages/messaging.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nfs.scm,
gnu/packages/ocaml.scm,
gnu/packages/package-management.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/php.scm,
gnu/packages/python.scm,
gnu/packages/qt.scm,
gnu/packages/ruby.scm,
gnu/packages/scheme.scm,
gnu/packages/sync.scm,
gnu/packages/syndication.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/web-browsers.scm,
gnu/packages/webkit.scm: Adjust module references.
2019-01-15 15:47:05 -05:00
|
|
|
#:use-module (gnu packages qt)
|
2020-03-04 12:27:22 -05:00
|
|
|
#:use-module (gnu packages sqlite)
|
|
|
|
#:use-module (gnu packages xml))
|
2014-10-29 09:57:50 -04:00
|
|
|
|
|
|
|
(define-public gpsbabel
|
|
|
|
(package
|
|
|
|
(name "gpsbabel")
|
2018-02-05 10:50:14 -05:00
|
|
|
(version "1.5.4")
|
2014-10-29 09:57:50 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
;; XXX: Downloads from gpsbabel.org are hidden behind a POST, so
|
|
|
|
;; get it from elsewhere.
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://debian/pool/main/g/gpsbabel/gpsbabel_"
|
|
|
|
version ".orig.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-02-05 10:50:14 -05:00
|
|
|
"19hykxhyl567gf8qcrl33qhv95w0g4vxw9r3h9b8d8plx9bnaf8l"))
|
|
|
|
(patches (search-patches
|
|
|
|
"gpsbabel-minizip.patch"
|
|
|
|
;; XXX: Remove this patch on the next release.
|
|
|
|
"gpsbabel-qstring.patch"))
|
2018-02-03 15:30:14 -05:00
|
|
|
(modules '((guix build utils)))
|
2018-01-15 01:28:47 -05:00
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
;; Delete files under GPL-compatible licences but never used
|
|
|
|
;; on GNU systems, rather than bloating the LICENSE field.
|
2018-02-05 10:50:14 -05:00
|
|
|
(delete-file "gui/serial_mac.cc") ; Apple MIT
|
|
|
|
(delete-file "mingw/include/ddk/hidsdi.h") ; public domain
|
2018-01-15 01:28:47 -05:00
|
|
|
#t))))
|
2014-10-29 09:57:50 -04:00
|
|
|
(build-system gnu-build-system)
|
2018-02-05 10:50:14 -05:00
|
|
|
;; TODO: "make doc" requires Docbook & co.
|
2014-10-29 09:57:50 -04:00
|
|
|
(arguments
|
2016-08-20 15:34:53 -04:00
|
|
|
`(#:configure-flags
|
2019-07-23 10:06:22 -04:00
|
|
|
'("--with-zlib=system")
|
2014-10-29 13:51:43 -04:00
|
|
|
;; On i686, 'raymarine.test' fails because of a rounding error:
|
|
|
|
;; <http://hydra.gnu.org/build/133040>. As a workaround, disable tests
|
|
|
|
;; on these platforms.
|
2016-08-20 15:34:53 -04:00
|
|
|
;; FIXME: On x86_64 with -std=gnu++11 tests also fail due to rounding
|
|
|
|
;; error.
|
|
|
|
#:tests? #f))
|
2014-10-29 09:57:50 -04:00
|
|
|
(inputs
|
|
|
|
`(("expat" ,expat)
|
|
|
|
("zlib" ,zlib)
|
2020-04-05 17:31:54 -04:00
|
|
|
("qtbase" ,qtbase)))
|
2014-10-29 09:57:50 -04:00
|
|
|
(native-inputs
|
|
|
|
`(("which" ,which)
|
2020-04-05 17:31:54 -04:00
|
|
|
("qttools" ,qttools)
|
2014-10-29 09:57:50 -04:00
|
|
|
("libxml2" ,libxml2))) ;'xmllint' needed for the KML tests
|
2018-01-15 01:28:43 -05:00
|
|
|
(home-page "https://www.gpsbabel.org/")
|
2014-10-29 09:57:50 -04:00
|
|
|
(synopsis "Convert and exchange data with GPS and map programs")
|
|
|
|
(description
|
|
|
|
"GPSBabel converts waypoints, tracks, and routes between hundreds of
|
|
|
|
popular GPS receivers and mapping programs. It contains extensive data
|
|
|
|
manipulation abilities making it a convenient for server-side processing or as
|
|
|
|
the back-end for other tools. It does not convert, transfer, send, or
|
|
|
|
manipulate maps.")
|
2018-01-15 01:28:47 -05:00
|
|
|
(license (list license:expat ; shapelib/*.[ch]
|
|
|
|
license:gpl2+)))) ; everything else
|
2014-10-29 12:58:42 -04:00
|
|
|
|
|
|
|
(define-public gpscorrelate
|
2020-07-24 05:57:18 -04:00
|
|
|
(package
|
|
|
|
(name "gpscorrelate")
|
|
|
|
(version "2.0")
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/dfandrich/gpscorrelate")
|
|
|
|
(commit version)))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1kvybhfnygz79q3pgwc1q2x4ccmnsfscx2hzxnmzjbnc6arnqari"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; This is a rudimentary build system.
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("prefix[[:blank:]]*=.*$")
|
|
|
|
(string-append "prefix = " (assoc-ref outputs "out")
|
|
|
|
"\n")))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("gtk+" ,gtk+)
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
("exiv2" ,exiv2)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("docbook-xml" ,docbook-xml)
|
|
|
|
("docbook-xsl" ,docbook-xsl)
|
|
|
|
("libxslt" ,libxslt)))
|
|
|
|
(home-page "https://dfandrich.github.io/gpscorrelate/")
|
|
|
|
(synopsis "GPS photo correlation tool to geo-localize images")
|
|
|
|
(description
|
|
|
|
"GPS Correlate is a program to match a recorded GPS track with the EXIF
|
2014-10-29 12:58:42 -04:00
|
|
|
tags in digital camera photos, and update the EXIF tags with the location that
|
|
|
|
the photo was taken. It does this by using the timestamp in the photo and
|
|
|
|
finding a data point in the GPS track that matches, or interpolating a point
|
|
|
|
between two other data points.")
|
2020-07-24 05:57:18 -04:00
|
|
|
(license license:gpl2+)))
|
2017-11-26 14:23:39 -05:00
|
|
|
|
|
|
|
(define-public gama
|
|
|
|
(package
|
|
|
|
(name "gama")
|
2020-09-27 01:50:26 -04:00
|
|
|
(version "2.10")
|
2017-11-26 14:23:39 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/gama/gama-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-09-27 01:50:26 -04:00
|
|
|
"14im3ahh849rildvs4qsk009jywf9w84vcmh7w44ajmlwcw7xiys"))))
|
2017-11-26 14:23:39 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments '(#:parallel-tests? #f)) ; race condition
|
|
|
|
(native-inputs
|
|
|
|
`(("libxml2" ,libxml2)))
|
|
|
|
(inputs
|
|
|
|
`(("expat" ,expat)
|
|
|
|
("sqlite" ,sqlite)))
|
|
|
|
(home-page "https://www.gnu.org/software/gama")
|
|
|
|
(synopsis "Adjustment of geodetic networks")
|
|
|
|
(description
|
|
|
|
"GNU Gama is a program for the adjustment of geodetic networks. It is
|
|
|
|
useful in measurements where Global Positioning System (GPS) is not available,
|
|
|
|
such as underground. It features the ability to adjust in local Cartesian
|
|
|
|
coordinates as well as partial support for adjustments in global coordinate systems.")
|
|
|
|
(license license:gpl3+)))
|
2018-02-05 09:19:41 -05:00
|
|
|
|
|
|
|
(define-public gpxsee
|
|
|
|
(package
|
|
|
|
(name "gpxsee")
|
2020-06-05 23:15:15 -04:00
|
|
|
(version "7.30")
|
2018-02-05 09:19:41 -05:00
|
|
|
(source (origin
|
2019-06-13 05:03:46 -04:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/tumic0/GPXSee")
|
|
|
|
(commit version)))
|
|
|
|
(file-name (git-file-name name version))
|
2018-02-05 09:19:41 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2020-06-05 23:15:15 -04:00
|
|
|
"09gajwqc30r9a2sn972qdx3gx0gki9n0zafq986hn6zsr3z43mfs"))))
|
2018-02-05 09:19:41 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
;; Use lrelease to convert TS translation files into QM files.
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(for-each (lambda (file)
|
2018-06-24 16:14:06 -04:00
|
|
|
(invoke "lrelease" file))
|
2018-02-05 09:19:41 -05:00
|
|
|
(find-files "lang" "\\.ts"))
|
|
|
|
(invoke "qmake"
|
|
|
|
(string-append "PREFIX="
|
2019-06-02 18:32:55 -04:00
|
|
|
(assoc-ref outputs "out"))))))))
|
2018-02-05 09:19:41 -05:00
|
|
|
(inputs
|
|
|
|
`(("qtbase" ,qtbase)))
|
|
|
|
(native-inputs
|
|
|
|
`(("qttools" ,qttools)))
|
2019-06-02 18:32:55 -04:00
|
|
|
(home-page "https://www.gpxsee.org")
|
|
|
|
(synopsis "GPS log file viewer and analyzer")
|
2018-02-05 09:19:41 -05:00
|
|
|
(description
|
2020-03-10 21:44:10 -04:00
|
|
|
"GPXSee is a Qt-based GPS log file viewer and analyzer that supports all
|
|
|
|
common GPS log file formats. It can display multiple tracks on various on-
|
|
|
|
and off-line maps. You can easily add more maps and graph other captured data
|
|
|
|
such as elevation, speed, heart rate, power, temperature, and gear shifts.")
|
2018-02-05 09:19:41 -05:00
|
|
|
(license license:gpl3)))
|
2020-03-04 12:27:22 -05:00
|
|
|
|
|
|
|
(define-public gpsd
|
|
|
|
(package
|
|
|
|
(name "gpsd")
|
2020-08-16 15:03:18 -04:00
|
|
|
(version "3.21")
|
2020-03-04 12:27:22 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://download-mirror.savannah.gnu.org"
|
|
|
|
"/releases/gpsd/gpsd-" version ".tar.gz"))
|
|
|
|
(sha256
|
2020-08-16 15:03:18 -04:00
|
|
|
(base32 "14gyqrbrq6jz4y6x59rdpv9d4c3pbn0vh1blq3iwrc6kz0x4ql35"))))
|
2020-03-04 12:27:22 -05:00
|
|
|
(build-system scons-build-system)
|
|
|
|
(native-inputs
|
2020-03-17 08:27:56 -04:00
|
|
|
`(("bc" ,bc)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2020-03-04 12:27:22 -05:00
|
|
|
(inputs
|
|
|
|
`(("bluez" ,bluez)
|
|
|
|
("dbus" ,dbus)
|
2020-04-03 04:12:47 -04:00
|
|
|
("gtk+" ,gtk+)
|
2020-03-04 12:27:22 -05:00
|
|
|
("libcap" ,libcap)
|
|
|
|
("libusb" ,libusb)
|
2020-03-17 08:27:56 -04:00
|
|
|
("ncurses" ,ncurses)
|
|
|
|
("python" ,python)
|
|
|
|
("python-pycairo" ,python-pycairo)
|
|
|
|
("python-pygobject" ,python-pygobject)
|
|
|
|
("python-pyserial" ,python-pyserial)
|
|
|
|
("python-wrapper" ,python-wrapper)
|
|
|
|
("qtbase" ,qtbase)))
|
2020-03-04 12:27:22 -05:00
|
|
|
(arguments
|
2020-03-17 08:27:56 -04:00
|
|
|
`(#:scons-flags
|
|
|
|
(list (string-append "prefix=" %output)
|
|
|
|
(let ((version ,(version-major+minor (package-version python))))
|
|
|
|
(string-append "python_libdir=" %output
|
|
|
|
"/lib/python" version
|
|
|
|
"/site-packages"))
|
|
|
|
"qt_versioned=5")
|
2020-03-04 12:27:22 -05:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2020-03-17 08:27:56 -04:00
|
|
|
(add-after 'unpack 'fix-build
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2020-03-04 12:27:22 -05:00
|
|
|
(substitute* "SConstruct"
|
2020-03-17 08:27:56 -04:00
|
|
|
(("envs = \\{\\}")
|
|
|
|
"envs = os.environ"))
|
|
|
|
#t))
|
|
|
|
(add-after 'install 'wrap-python-scripts
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(pycairo (assoc-ref inputs "python-pycairo"))
|
|
|
|
(pygobject (assoc-ref inputs "python-pygobject"))
|
|
|
|
(pyserial (assoc-ref inputs "python-pyserial"))
|
|
|
|
(sitedir (lambda (package)
|
|
|
|
(string-append package
|
|
|
|
"/lib/python"
|
|
|
|
,(version-major+minor
|
|
|
|
(package-version python))
|
|
|
|
"/site-packages")))
|
|
|
|
(pythonpath (string-join (map sitedir
|
|
|
|
(list out pycairo pygobject
|
|
|
|
pyserial))
|
|
|
|
":")))
|
|
|
|
(for-each (lambda (script)
|
|
|
|
(wrap-program (string-append out "/bin/" script)
|
|
|
|
`("PYTHONPATH" ":" prefix (,pythonpath))))
|
|
|
|
'("gegps" "gpscat" "gpsfake" "gpsprof"
|
|
|
|
"ubxtool" "xgps" "xgpsspeed" "zerk")))
|
2020-03-04 12:27:22 -05:00
|
|
|
#t)))))
|
|
|
|
(synopsis "GPS service daemon")
|
|
|
|
(description
|
|
|
|
"@code{gpsd} is a service daemon that monitors one or more GPSes or AIS
|
|
|
|
receivers attached to a host computer through serial or USB ports, making all
|
|
|
|
data on the location/course/velocity of the sensors available to be queried on
|
|
|
|
TCP port 2947 of the host computer.")
|
|
|
|
(home-page "https://gpsd.gitlab.io/gpsd/")
|
|
|
|
(license license:bsd-2)))
|