2016-03-05 02:33:09 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
2016-08-17 17:37:58 -04:00
|
|
|
|
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
2018-02-21 18:07:47 -05:00
|
|
|
|
;;; Copyright © 2017, 2018 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
2021-01-01 11:15:20 -05:00
|
|
|
|
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-01-23 02:44:53 -05:00
|
|
|
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
2019-12-04 09:25:17 -05:00
|
|
|
|
;;; Copyright © 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
|
2018-02-17 16:11:25 -05:00
|
|
|
|
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
2021-10-09 09:25:20 -04:00
|
|
|
|
;;; Copyright © 2018, 2019, 2020, 2021 Julien Lepiller <julien@lepiller.eu>
|
2022-01-19 07:48:54 -05:00
|
|
|
|
;;; Copyright © 2019, 2020, 2021, 2022 Guillaume Le Vaillant <glv@posteo.net>
|
2021-03-09 08:31:52 -05:00
|
|
|
|
;;; Copyright © 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
2021-07-14 13:55:52 -04:00
|
|
|
|
;;; Copyright © 2019, 2021 Wiktor Żelazny <wzelazny@vurv.cz>
|
2020-12-25 17:02:18 -05:00
|
|
|
|
;;; Copyright © 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
2022-06-14 14:15:35 -04:00
|
|
|
|
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
2020-09-13 04:31:15 -04:00
|
|
|
|
;;; Copyright © 2020 Christopher Baines <mail@cbaines.net>
|
2022-03-24 16:35:32 -04:00
|
|
|
|
;;; Copyright © 2020, 2021, 2022 Felix Gruber <felgru@posteo.net>
|
2021-01-27 14:02:22 -05:00
|
|
|
|
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
2021-05-17 22:55:58 -04:00
|
|
|
|
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
2021-08-27 10:23:31 -04:00
|
|
|
|
;;; Copyright © 2021 Clément Lassieur <clement@lassieur.org>
|
2022-08-15 19:38:30 -04:00
|
|
|
|
;;; Copyright © 2021, 2022 Nikolay Korotkiy <sikmir@disroot.org>
|
2022-06-25 15:20:59 -04:00
|
|
|
|
;;; Copyright © 2022 Roman Scherer <roman.scherer@burningswell.com>
|
2022-09-12 17:01:14 -04:00
|
|
|
|
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2016-03-05 02:33:09 -05: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 geo)
|
2019-05-03 07:06:03 -04:00
|
|
|
|
#:use-module (guix build-system ant)
|
2018-09-27 16:16:31 -04:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2017-01-16 15:05:12 -05:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2018-09-23 16:36:15 -04:00
|
|
|
|
#:use-module (guix build-system go)
|
2018-12-06 17:26:25 -05:00
|
|
|
|
#:use-module (guix build-system meson)
|
2018-02-15 17:10:08 -05:00
|
|
|
|
#:use-module (guix build-system python)
|
2020-01-13 09:38:33 -05:00
|
|
|
|
#:use-module (guix build-system qt)
|
2018-02-15 17:09:37 -05:00
|
|
|
|
#:use-module (guix build-system scons)
|
2018-02-17 16:11:25 -05:00
|
|
|
|
#:use-module (guix build-system r)
|
2022-06-25 06:10:00 -04:00
|
|
|
|
#:use-module (guix gexp)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
#:use-module (guix download)
|
2019-02-18 17:32:54 -05:00
|
|
|
|
#:use-module (guix git-download)
|
2019-05-03 08:55:51 -04:00
|
|
|
|
#:use-module (guix svn-download)
|
2017-01-16 15:05:12 -05:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix utils)
|
2019-12-04 15:17:47 -05:00
|
|
|
|
#:use-module (gnu packages)
|
2020-03-21 19:03:41 -04:00
|
|
|
|
#:use-module (gnu packages algebra)
|
2019-07-14 14:00:46 -04:00
|
|
|
|
#:use-module (gnu packages astronomy)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:use-module (gnu packages audio)
|
2019-05-27 11:05:16 -04:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:use-module (gnu packages backup)
|
2020-03-21 19:03:41 -04:00
|
|
|
|
#:use-module (gnu packages bash)
|
|
|
|
|
#:use-module (gnu packages bison)
|
2018-02-15 17:09:37 -05:00
|
|
|
|
#:use-module (gnu packages boost)
|
2021-11-17 20:56:39 -05:00
|
|
|
|
#:use-module (gnu packages build-tools)
|
2018-02-15 17:10:08 -05:00
|
|
|
|
#:use-module (gnu packages check)
|
2022-09-15 19:45:04 -04:00
|
|
|
|
#:use-module (gnu packages cmake)
|
2017-07-20 11:50:18 -04:00
|
|
|
|
#:use-module (gnu packages compression)
|
2021-12-15 10:09:28 -05:00
|
|
|
|
#:use-module (gnu packages cpp)
|
|
|
|
|
#:use-module (gnu packages cups)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:use-module (gnu packages curl)
|
2018-02-15 17:09:37 -05:00
|
|
|
|
#:use-module (gnu packages databases)
|
2018-09-27 16:38:32 -04:00
|
|
|
|
#:use-module (gnu packages datastructures)
|
2020-07-25 06:37:47 -04:00
|
|
|
|
#:use-module (gnu packages docbook)
|
2018-09-27 16:38:32 -04:00
|
|
|
|
#:use-module (gnu packages documentation)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:use-module (gnu packages elf)
|
2020-03-21 19:03:41 -04:00
|
|
|
|
#:use-module (gnu packages flex)
|
2019-07-14 14:00:46 -04:00
|
|
|
|
#:use-module (gnu packages fonts)
|
2018-02-15 17:09:37 -05:00
|
|
|
|
#:use-module (gnu packages fontutils)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
|
#:use-module (gnu packages gl)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages gnome)
|
2020-03-24 05:20:27 -04:00
|
|
|
|
#:use-module (gnu packages gps)
|
2021-10-09 09:25:20 -04:00
|
|
|
|
#:use-module (gnu packages graphics)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
#:use-module (gnu packages gtk)
|
2020-03-24 05:20:27 -04:00
|
|
|
|
#:use-module (gnu packages haskell-apps)
|
2022-02-08 04:00:48 -05:00
|
|
|
|
#:use-module (gnu packages haskell-xyz)
|
2017-07-20 11:50:18 -04:00
|
|
|
|
#:use-module (gnu packages image)
|
2020-03-22 06:33:00 -04:00
|
|
|
|
#:use-module (gnu packages image-processing)
|
2018-02-15 17:09:37 -05:00
|
|
|
|
#:use-module (gnu packages icu4c)
|
2019-05-03 08:55:51 -04:00
|
|
|
|
#:use-module (gnu packages java)
|
2020-03-24 05:20:27 -04:00
|
|
|
|
#:use-module (gnu packages kde)
|
2022-03-16 10:57:34 -04:00
|
|
|
|
#:use-module (gnu packages libusb)
|
|
|
|
|
#:use-module (gnu packages linux)
|
2018-09-23 16:37:17 -04:00
|
|
|
|
#:use-module (gnu packages lua)
|
2019-12-20 11:24:44 -05:00
|
|
|
|
#:use-module (gnu packages maths)
|
2021-10-09 09:25:20 -04:00
|
|
|
|
#:use-module (gnu packages multiprecision)
|
2018-04-16 04:36:53 -04:00
|
|
|
|
#:use-module (gnu packages pcre)
|
2020-03-22 06:33:00 -04:00
|
|
|
|
#:use-module (gnu packages pdf)
|
2018-04-16 04:45:52 -04:00
|
|
|
|
#:use-module (gnu packages perl)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:use-module (gnu packages photo)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2022-08-15 19:38:30 -04:00
|
|
|
|
#:use-module (gnu packages pretty-print)
|
2019-03-15 07:48:54 -04:00
|
|
|
|
#:use-module (gnu packages protobuf)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:use-module (gnu packages pulseaudio)
|
2018-02-15 17:09:37 -05:00
|
|
|
|
#:use-module (gnu packages python)
|
2021-11-14 18:00:52 -05:00
|
|
|
|
#:use-module (gnu packages python-build)
|
2020-07-21 04:02:42 -04:00
|
|
|
|
#:use-module (gnu packages python-check)
|
2021-09-28 02:34:41 -04:00
|
|
|
|
#:use-module (gnu packages python-crypto)
|
2021-05-18 19:54:14 -04:00
|
|
|
|
#:use-module (gnu packages python-science)
|
2019-11-17 11:23:34 -05:00
|
|
|
|
#:use-module (gnu packages python-web)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 08:21:30 -05:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
2019-07-14 14:00:46 -04:00
|
|
|
|
#:use-module (gnu packages qt)
|
2020-03-21 19:03:41 -04:00
|
|
|
|
#:use-module (gnu packages readline)
|
2020-03-22 06:33:00 -04:00
|
|
|
|
#:use-module (gnu packages swig)
|
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 sqlite)
|
2020-03-20 12:44:06 -04:00
|
|
|
|
#:use-module (gnu packages textutils)
|
2020-03-21 19:03:41 -04:00
|
|
|
|
#:use-module (gnu packages time)
|
2022-06-25 07:47:19 -04:00
|
|
|
|
#:use-module (gnu packages tls)
|
2018-02-17 17:23:38 -05:00
|
|
|
|
#:use-module (gnu packages web)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
#:use-module (gnu packages webkit)
|
2018-02-21 18:10:51 -05:00
|
|
|
|
#:use-module (gnu packages wxwidgets)
|
2020-03-24 05:20:27 -04:00
|
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
|
#:use-module (gnu packages xorg))
|
2016-03-05 02:33:09 -05:00
|
|
|
|
|
2022-06-25 06:10:00 -04:00
|
|
|
|
(define-public cdo
|
|
|
|
|
(package
|
|
|
|
|
(name "cdo")
|
|
|
|
|
(version "2.0.5")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://code.mpimet.mpg.de/attachments/download/26823/cdo-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1khdbd5cmnn7qm6hcqg4md5wbq14fs6brrns8b3g18diqgqvpvpd"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:configure-flags
|
|
|
|
|
#~(list (string-append "--with-netcdf="
|
|
|
|
|
#$(this-package-input "netcdf")))))
|
|
|
|
|
(inputs
|
|
|
|
|
(list netcdf))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list pkg-config))
|
|
|
|
|
(home-page "https://code.mpimet.mpg.de/projects/cdo")
|
|
|
|
|
(synopsis "Climate data operators")
|
|
|
|
|
(description "@acronym{CDO, Climate Data Operators} is a collection of command-line
|
|
|
|
|
operators to manipulate and analyse climate and NWP model data. Supported
|
|
|
|
|
data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG. There are more
|
|
|
|
|
than 600 operators available.")
|
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
|
2020-07-25 06:37:47 -04:00
|
|
|
|
(define-public memphis
|
|
|
|
|
(package
|
|
|
|
|
(name "memphis")
|
|
|
|
|
(version "0.2.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
gnu: Don't append '.git' to GitHub uris.
* gnu/packages/admin.scm (nmrpflash)[source]: Remove '.git' from URI.
* gnu/packages/aidc.scm (zxing-cpp),
* gnu/packages/assembly.scm (mbuild),
* gnu/packages/audio.scm (opensles, wildmidi, tinyalsa),
* gnu/packages/browser-extensions.scm (ublock-origin-chromium),
* gnu/packages/check.scm (mutest),
* gnu/packages/compression.scm (unshield),
* gnu/packages/coq.scm (subset),
* gnu/packages/dictionaries.scm (translate-shell),
* gnu/packages/disk.scm (memkind),
* gnu/packages/documentation.scm (latex2html),
* gnu/packages/emacs-xyz.scm (emacs-chronometrist,
emacs-flycheck-ledger, emacs-counsel-notmuch, emacs-spaceline,
emacs-org-generate),
* gnu/packages/embedded.scm (ebusd, ebusd-configuration),
* gnu/packages/enchant.scm (nuspell),
* gnu/packages/fontutils.scm (woff2),
* gnu/packages/geo.scm (memphis),
* gnu/packages/gimp.scm (mrg),
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator),
* gnu/packages/gnome.scm (parlatype),
* gnu/packages/golang.scm (go-github-com-tv42-httpunix,
go-github-com-ayufan-golang-kardianos-service),
* gnu/packages/graphics.scm (eglexternalplatform, egl-wayland, mmm,
directfb, flux),
* gnu/packages/gstreamer.scm (openni2, ccextractor, libvisual,
graphene),
* gnu/packages/guile-xyz.scm (guile-srfi-180, guile-torrent),
* gnu/packages/image.scm (openjpeg-data),
* gnu/packages/java.scm (javacc),
* gnu/packages/language.scm (liblouis, liblouisutdml),
* gnu/packages/linux.scm (pamela, ttyebus),
* gnu/packages/lxqt.scm (lxqt-connman-applet),
* gnu/packages/mail.scm (libetpan),
* gnu/packages/man.scm (ronn),
* gnu/packages/music.scm (tascam-gtk, artyfx),
* gnu/packages/networking.scm (srt, lksctp-tools, nng, nanomsg),
* gnu/packages/python-crypto.scm (pure-python-otr),
* gnu/packages/qt.scm (qtspell),
* gnu/packages/raspberry-pi.scm (raspi-gpio, raspi-open-firmware),
* gnu/packages/rdp.scm (freerdp),
* gnu/packages/ruby.scm (ruby-prawn-templates, ruby-treetop, ruby-gimme,
ruby-standard, ruby-rubocop-ast, ruby-rexml, ruby-range-compressor,
ruby-regexp-property-values, ruby-regexp-parser, ruby-rubocop,
ruby-pdf-reader, ruby-pdf-inspector, ruby-prawn),
* gnu/packages/syncthing.scm (syncthing-gtk),
* gnu/packages/video.scm (svt-hevc, mediasdk, libvideogfx, libde265,
tslib),
* gnu/packages/xml.scm (libxmlb, libxmlplusplus)[source]: Same.
2020-11-19 13:18:54 -05:00
|
|
|
|
(url "https://github.com/jiuka/memphis")
|
2020-07-25 06:37:47 -04:00
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "068c3943pgbpfjq44pmvn5fmkh005ak5aa67vvrq3fn487c6w54q"))))
|
|
|
|
|
(build-system glib-or-gtk-build-system)
|
|
|
|
|
(outputs '("out" "doc"))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags
|
|
|
|
|
(list
|
|
|
|
|
"--disable-static"
|
|
|
|
|
"--enable-gtk-doc"
|
|
|
|
|
"--enable-vala"
|
|
|
|
|
(string-append "--with-html-dir="
|
|
|
|
|
(assoc-ref %outputs "doc")
|
|
|
|
|
"/share/gtk-doc/html"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-autogen
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "autogen.sh"
|
|
|
|
|
(("\\./configure \"\\$@\"")
|
|
|
|
|
""))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'patch-autogen 'patch-docbook-xml
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(with-directory-excursion "docs/reference"
|
|
|
|
|
(substitute* "libmemphis-docs.sgml"
|
|
|
|
|
(("http://www.oasis-open.org/docbook/xml/4.3/")
|
|
|
|
|
(string-append (assoc-ref inputs "docbook-xml")
|
|
|
|
|
"/xml/dtd/docbook/"))))
|
|
|
|
|
#t)))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("docbook-xml" ,docbook-xml-4.3)
|
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
gnu: Use 'gtk-doc/stable' in native-inputs of selected packages.
* gnu/packages/calendar.scm (libical),
gnu/packages/check.scm (umockdev),
gnu/packages/fontutils.scm (libraqm),
gnu/packages/freedesktop.scm (appstream, farstream, libglib-testing)
(udisks, libfprint, libportal),
gnu/packages/geo.scm (memphis, osm-gps-map),
gnu/packages/glib.scm (template-glib),
gnu/packages/gnome.scm (gupnp-igd, libcloudproviders, libgrss, seed)
(gtx, dee, zeitgeist, phodav, gssdp, gupnp, gupnp-dlna, gupnp-av, rygel)
(libnma, gdl, libnotify, vte-ng, dconf, libxklavier, libsoup, colord)
(geoclue, geocode-glib, amtk, grilo, gvfs, gusb, network-manager)
(network-manager-applet, gfbgraph, libunique, cheese, libhandy)
(gnome-latex, libgda),
gnu/packages/gstreamer.scm (orc),
gnu/packages/gtk.scm (at-spi2-core, goocanvas),
gnu/packages/language.scm (nimf),
gnu/packages/networking.scm (libnice),
gnu/packages/video.scm (schroedinger),
gnu/packages/virtualization.scm (libosinfo),
gnu/packages/webkit.scm (wpewebkit, webkitgtk),
gnu/packages/xml.scm (libxmlb)[native-inputs]: Replace 'gtk-doc' with
'gtk-doc/stable'.
2021-03-27 07:35:02 -04:00
|
|
|
|
("gtk-doc" ,gtk-doc/stable)
|
2020-07-25 06:37:47 -04:00
|
|
|
|
("libtool" ,libtool)
|
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
|
("python" ,python-wrapper)
|
|
|
|
|
("seed" ,seed)
|
|
|
|
|
("vala" ,vala)))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list expat glib))
|
2020-07-25 06:37:47 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list cairo))
|
2020-07-25 06:37:47 -04:00
|
|
|
|
(synopsis "Map-rendering for OpenSteetMap")
|
|
|
|
|
(description "Memphis is a map-rendering application and a library for
|
|
|
|
|
OpenStreetMap written in C using eXpat, Cairo and GLib.")
|
|
|
|
|
(home-page "http://trac.openstreetmap.ch/trac/memphis/")
|
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
|
2017-01-20 12:35:31 -05:00
|
|
|
|
(define-public geos
|
|
|
|
|
(package
|
|
|
|
|
(name "geos")
|
2022-08-17 05:23:43 -04:00
|
|
|
|
(version "3.11.0")
|
2017-01-20 12:35:31 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://download.osgeo.org/geos/geos-"
|
|
|
|
|
version
|
|
|
|
|
".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-08-17 05:23:43 -04:00
|
|
|
|
"12l59pxawyizmc4wn20dvjn7aifqwkim4ysmc78h91mayjmqravr"))))
|
2022-07-06 14:14:05 -04:00
|
|
|
|
(build-system cmake-build-system)
|
2017-01-20 12:35:31 -05:00
|
|
|
|
(arguments `(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after
|
|
|
|
|
'unpack 'patch-test-shebangs
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* '("tests/xmltester/testrunner.sh"
|
|
|
|
|
"tests/geostest/testrunner.sh")
|
2022-07-06 14:14:05 -04:00
|
|
|
|
(("/bin/sh") (which "sh"))))))))
|
2017-01-20 12:35:31 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list glib))
|
2022-07-06 14:14:05 -04:00
|
|
|
|
(home-page "https://libgeos.org/")
|
2017-01-20 12:35:31 -05:00
|
|
|
|
(synopsis "Geometry Engine for Geographic Information Systems")
|
|
|
|
|
(description
|
|
|
|
|
"GEOS provides a spatial object model and fundamental geometric
|
|
|
|
|
functions. It is a C++ port of the Java Topology Suite (JTS). As such,
|
|
|
|
|
it aims to contain the complete functionality of JTS in C++. This
|
|
|
|
|
includes all the OpenGIS Simple Features for SQL spatial predicate
|
|
|
|
|
functions and spatial operators, as well as specific JTS enhanced
|
|
|
|
|
topology functions.")
|
|
|
|
|
(license (list license:lgpl2.1+ ; Main distribution.
|
|
|
|
|
license:zlib ; tests/xmltester/tinyxml/*
|
|
|
|
|
license:public-domain)))) ; include/geos/timeval.h
|
|
|
|
|
|
2016-03-05 02:33:09 -05:00
|
|
|
|
(define-public gnome-maps
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-maps")
|
2022-09-12 12:03:02 -04:00
|
|
|
|
(version "43.rc") ;for libsoup 3 support
|
2016-03-05 02:33:09 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
2021-09-24 15:37:07 -04:00
|
|
|
|
(version-major version) "/"
|
2016-03-05 02:33:09 -05:00
|
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-09-12 12:03:02 -04:00
|
|
|
|
"16a3j896fwxgnvrmx27jnrvhxzh3v22paaq87ad57yp8wkq946il"))))
|
2018-12-06 17:26:25 -05:00
|
|
|
|
(build-system meson-build-system)
|
2016-03-05 02:33:09 -05:00
|
|
|
|
(arguments
|
2022-09-12 12:03:02 -04:00
|
|
|
|
(list
|
|
|
|
|
#:glib-or-gtk? #t
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
|
|
|
|
;; Don't create 'icon-theme.cache'.
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "meson_post_install.py"
|
|
|
|
|
(("gtk-update-icon-cache") "true"))))
|
|
|
|
|
(add-after 'unpack 'patch-dbus-service
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "data/org.gnome.Maps.service.in"
|
|
|
|
|
(("@pkgdatadir@/org.gnome.Maps")
|
|
|
|
|
(string-append #$output "/bin/gnome-maps")))))
|
|
|
|
|
(add-after 'install 'wrap
|
|
|
|
|
(lambda _
|
|
|
|
|
(wrap-program (string-append #$output "/bin/gnome-maps")
|
|
|
|
|
`("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH")))))))))
|
2016-03-05 02:33:09 -05:00
|
|
|
|
(native-inputs
|
2022-09-12 12:03:02 -04:00
|
|
|
|
(list gettext-minimal
|
|
|
|
|
`(,glib "bin")
|
|
|
|
|
gobject-introspection
|
|
|
|
|
pkg-config))
|
2016-03-05 02:33:09 -05:00
|
|
|
|
(inputs
|
2022-09-12 12:03:02 -04:00
|
|
|
|
(list folks
|
|
|
|
|
evolution-data-server
|
|
|
|
|
geoclue
|
|
|
|
|
geocode-glib
|
|
|
|
|
gfbgraph
|
|
|
|
|
gjs
|
|
|
|
|
glib
|
|
|
|
|
glib-networking
|
|
|
|
|
gnome-online-accounts
|
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
|
gtk+
|
|
|
|
|
libadwaita
|
|
|
|
|
libgee
|
|
|
|
|
libgweather4
|
|
|
|
|
libhandy
|
|
|
|
|
librsvg
|
|
|
|
|
libsecret
|
|
|
|
|
libshumate
|
|
|
|
|
libsoup
|
|
|
|
|
libxml2
|
|
|
|
|
pango-next ;TODO: remove when it's the default
|
|
|
|
|
rest-next
|
|
|
|
|
webkitgtk))
|
2016-03-05 02:33:09 -05:00
|
|
|
|
(synopsis "Graphical map viewer and wayfinding program")
|
|
|
|
|
(description "GNOME Maps is a graphical map viewer. It uses map data from
|
|
|
|
|
the OpenStreetMap project. It can provide directions for walking, bicycling,
|
|
|
|
|
and driving.")
|
|
|
|
|
(home-page "https://wiki.gnome.org/Apps/Maps")
|
2017-01-16 15:05:12 -05:00
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2017-07-20 11:50:18 -04:00
|
|
|
|
(define-public libgeotiff
|
|
|
|
|
(package
|
|
|
|
|
(name "libgeotiff")
|
2022-07-06 14:14:04 -04:00
|
|
|
|
(version "1.7.1")
|
2017-07-20 11:50:18 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
2022-07-06 14:14:04 -04:00
|
|
|
|
(base32 "1mjmgv48x51ppax5dnb6lq7z600czxll53bx6jbzqwd4m93i7aq5"))
|
2017-07-20 11:50:18 -04:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; Remove .csv files, distributed from EPSG under a restricted
|
|
|
|
|
;; license. See LICENSE for full license text.
|
|
|
|
|
(for-each delete-file (find-files "." "\\.csv$"))
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 07:47:34 -04:00
|
|
|
|
#t))))
|
2017-07-20 11:50:18 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list libjpeg-turbo libtiff zlib))
|
2020-01-07 08:28:09 -05:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list ;; libgeotiff headers include proj headers, so ensure those are available.
|
|
|
|
|
proj))
|
2017-07-20 11:50:18 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags
|
2020-01-07 08:28:53 -05:00
|
|
|
|
(list "--disable-static"
|
|
|
|
|
"--with-zlib" "--with-jpeg"
|
2017-07-20 11:50:18 -04:00
|
|
|
|
(string-append "--with-libtiff=" (assoc-ref %build-inputs "libtiff")))))
|
|
|
|
|
(synopsis "Library for handling GeoTIFF (geographic enabled TIFF)")
|
|
|
|
|
(description "libgeotiff is a library on top of libtiff for reading and
|
|
|
|
|
writing GeoTIFF information tags.")
|
|
|
|
|
(home-page "https://trac.osgeo.org/geotiff/")
|
|
|
|
|
;; This is a mixture of various contributions under different licenses.
|
|
|
|
|
;; Note that the EPSG database is NOT "free to use" as the LICENSE file
|
|
|
|
|
;; states, as its commercial redistribution is restricted. Hence, we have
|
|
|
|
|
;; removed it from the package.
|
|
|
|
|
(license (list license:public-domain
|
|
|
|
|
license:x11
|
|
|
|
|
license:bsd-3
|
|
|
|
|
(license:non-copyleft "file://LICENSE"
|
|
|
|
|
"See LICENSE in the distribution.")))))
|
|
|
|
|
|
2021-03-28 04:40:21 -04:00
|
|
|
|
(define-public librasterlite2
|
|
|
|
|
(package
|
|
|
|
|
(name "librasterlite2")
|
|
|
|
|
(version "1.1.0-beta1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://www.gaia-gis.it/gaia-sins/librasterlite2-sources/"
|
|
|
|
|
"librasterlite2-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1x24gqp4hsq97c31ncwxblab0x0863q8v1z42jil7lvsq3glqa7p"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2021-03-28 04:40:21 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list cairo
|
|
|
|
|
curl
|
|
|
|
|
freetype
|
|
|
|
|
freexl
|
|
|
|
|
giflib
|
|
|
|
|
libgeotiff
|
|
|
|
|
libjpeg-turbo
|
|
|
|
|
libpng
|
|
|
|
|
librttopo
|
|
|
|
|
libspatialite
|
|
|
|
|
libtiff
|
|
|
|
|
libwebp
|
|
|
|
|
libxml2
|
|
|
|
|
lz4
|
|
|
|
|
minizip
|
|
|
|
|
openjpeg
|
|
|
|
|
proj
|
|
|
|
|
sqlite
|
|
|
|
|
`(,zstd "lib")))
|
2021-03-28 04:40:21 -04:00
|
|
|
|
(synopsis "Library to work with huge raster coverages using a SpatiaLite")
|
|
|
|
|
(description
|
|
|
|
|
"librasterlite2 is a library that stores and retrieves huge raster
|
|
|
|
|
coverages using a SpatiaLite DBMS.")
|
|
|
|
|
(home-page "https://www.gaia-gis.it/fossil/librasterlite2/index")
|
|
|
|
|
;; For the genuine librasterlite-sources holds:
|
|
|
|
|
;; Any of the licenses MPL1.1, GPL2+ or LGPL2.1+ may be picked.
|
|
|
|
|
;; Files under src/control_points are from GRASS
|
|
|
|
|
;; and are licensed under GPL2+ only.
|
|
|
|
|
;; src/md5.[ch]: Placed into the public domain by Alexander Peslyak.
|
|
|
|
|
;; The tools supporting the library (both rl2tool and wmslite) are
|
|
|
|
|
;; licensed under the GPL v3 (or any subsequent version) terms.
|
|
|
|
|
;; The test/*.svg files are placed in the public domain, except for
|
|
|
|
|
;; test/Car_Yellow.svg which is licensed under the Free Art License 1.3.
|
|
|
|
|
(license (list license:gpl2+
|
|
|
|
|
license:gpl3+
|
|
|
|
|
license:lal1.3
|
|
|
|
|
license:lgpl2.1+
|
|
|
|
|
license:mpl1.1
|
|
|
|
|
license:public-domain))))
|
|
|
|
|
|
2020-11-30 14:42:33 -05:00
|
|
|
|
(define-public librttopo
|
|
|
|
|
(package
|
|
|
|
|
(name "librttopo")
|
|
|
|
|
(version "1.1.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://git.osgeo.org/gitea/rttopo/librttopo")
|
|
|
|
|
(commit (string-append "librttopo-" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0h7lzlkn9g4xky6h81ndy0aa6dxz8wb6rnl8v3987jy1i6pr072p"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-autogen
|
|
|
|
|
(lambda _
|
|
|
|
|
(let ((autoconf (which "autoconf"))
|
|
|
|
|
(autoheader (which "autoheader"))
|
|
|
|
|
(aclocal (which "aclocal"))
|
|
|
|
|
(automake (which "automake"))
|
|
|
|
|
(libtoolize (which "libtoolize")))
|
|
|
|
|
(substitute* "autogen.sh"
|
|
|
|
|
(("`which autoconf 2>/dev/null`") autoconf)
|
|
|
|
|
(("`which autoheader 2>/dev/null`") autoheader)
|
|
|
|
|
(("ACLOCAL=.*$")
|
|
|
|
|
(string-append "ACLOCAL=" aclocal "\n"))
|
|
|
|
|
(("AUTOMAKE=.*$")
|
|
|
|
|
(string-append "AUTOMAKE=" automake "\n"))
|
|
|
|
|
(("LIBTOOLIZE=.*$")
|
|
|
|
|
(string-append "LIBTOOLIZE=" libtoolize "\n"))))
|
|
|
|
|
#t)))))
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list autoconf automake libtool pkg-config))
|
2020-11-30 14:42:33 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list geos))
|
2020-11-30 14:42:33 -05:00
|
|
|
|
(synopsis "Library to handle SQL/MM topologies")
|
|
|
|
|
(description
|
|
|
|
|
"The RT Topology Library exposes an API to create and manage standard
|
|
|
|
|
(ISO 13249 aka SQL/MM) topologies using user-provided data stores.")
|
|
|
|
|
(home-page "https://git.osgeo.org/gitea/rttopo/librttopo")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(define-public libspatialite
|
|
|
|
|
(package
|
|
|
|
|
(name "libspatialite")
|
2021-02-27 05:25:09 -05:00
|
|
|
|
(version "5.0.1")
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.gaia-gis.it/gaia-sins/libspatialite-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-02-27 05:25:09 -05:00
|
|
|
|
"164y82rw2lrp5glfc0rkn7n6xvx5dvlgmh7bb7815067251wkjzf"))))
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list freexl
|
|
|
|
|
geos
|
|
|
|
|
librttopo
|
|
|
|
|
libxml2
|
|
|
|
|
minizip
|
|
|
|
|
proj
|
|
|
|
|
sqlite))
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(arguments
|
2020-11-30 14:42:34 -05:00
|
|
|
|
`(#:configure-flags
|
|
|
|
|
'("--enable-rttopo=yes")
|
|
|
|
|
#:phases
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(modify-phases %standard-phases
|
2021-08-20 08:24:52 -04:00
|
|
|
|
;; 1 test is failing, ignore it:
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(add-after 'unpack 'ignore-broken-tests
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* '("test/Makefile.in")
|
2021-08-20 08:24:52 -04:00
|
|
|
|
(("check_wms\\$\\(EXEEXT\\) check_drop_rename\\$\\(EXEEXT\\) ")
|
|
|
|
|
"check_wms$(EXEEXT) ")))))))
|
2018-02-21 18:07:47 -05:00
|
|
|
|
(synopsis "Extend SQLite to support Spatial SQL capabilities")
|
|
|
|
|
(description
|
|
|
|
|
"SpatiaLite is a library intended to extend the SQLite core to support
|
|
|
|
|
fully fledged Spatial SQL capabilities.")
|
|
|
|
|
(home-page "https://www.gaia-gis.it/fossil/libspatialite/index")
|
|
|
|
|
;; For the genuine libspatialite-sources holds:
|
|
|
|
|
;; Any of the licenses MPL1.1, GPL2+ or LGPL2.1+ may be picked.
|
|
|
|
|
;; Files under src/control_points are from GRASS
|
|
|
|
|
;; and are licensed under GPL2+ only.
|
|
|
|
|
;; src/md5.[ch]: Placed into the public domain by Alexander Peslyak.
|
|
|
|
|
(license (list license:gpl2+
|
|
|
|
|
license:lgpl2.1+
|
|
|
|
|
license:mpl1.1
|
|
|
|
|
license:public-domain))))
|
|
|
|
|
|
2019-12-04 15:13:42 -05:00
|
|
|
|
(define-public proj
|
|
|
|
|
(package
|
|
|
|
|
(name "proj")
|
2022-09-12 17:01:14 -04:00
|
|
|
|
(version "9.1.0")
|
2019-12-04 15:13:42 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://download.osgeo.org/proj/proj-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-09-12 17:01:14 -04:00
|
|
|
|
"0593vd9sac0c98j1f4rammd90d4xnhygbr6d49i8il6ajjdj7cl1"))))
|
2021-09-28 02:34:40 -04:00
|
|
|
|
(build-system cmake-build-system)
|
2022-09-12 17:01:14 -04:00
|
|
|
|
(native-inputs (list googletest pkg-config))
|
|
|
|
|
(propagated-inputs (list curl libtiff sqlite)) ;required by proj.pc
|
2019-12-04 15:13:42 -05:00
|
|
|
|
(home-page "https://proj.org/")
|
|
|
|
|
(synopsis "Coordinate transformation software")
|
|
|
|
|
(description
|
|
|
|
|
"Proj is a generic coordinate transformation software that transforms
|
2021-09-28 02:34:40 -04:00
|
|
|
|
geospatial coordinates from one @acronym{CRS, coordinate reference system}
|
|
|
|
|
to another. This includes cartographic projections as well as geodetic
|
|
|
|
|
transformations. Proj includes command line applications for easy
|
|
|
|
|
conversion of coordinates from text files or directly from user input.
|
|
|
|
|
In addition, Proj also exposes an application programming interface that
|
|
|
|
|
lets developers use the functionality of Proj in their own software.")
|
2019-12-04 15:13:42 -05:00
|
|
|
|
(license (list license:expat
|
|
|
|
|
;; src/projections/patterson.cpp
|
|
|
|
|
license:asl2.0
|
|
|
|
|
;; src/geodesic.*, src/tests/geodtest.cpp
|
|
|
|
|
license:x11))))
|
|
|
|
|
|
2022-09-08 16:14:30 -04:00
|
|
|
|
; This is the last version of proj that provides the old proj.4 API.
|
|
|
|
|
(define-public proj-7
|
|
|
|
|
(package (inherit proj)
|
|
|
|
|
(version "7.2.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://download.osgeo.org/proj/proj-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"050apzdn0isxpsblys1shrl9ccli5vd32kgswlgx1imrbwpg915k"))))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON")
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-version
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
|
(("MAJOR 7 MINOR 2 PATCH 0") "MAJOR 7 MINOR 2 PATCH 1")))))))))
|
|
|
|
|
|
2021-09-28 02:34:41 -04:00
|
|
|
|
(define-public python-pyproj
|
|
|
|
|
(package
|
|
|
|
|
(name "python-pyproj")
|
2022-09-08 16:14:34 -04:00
|
|
|
|
(version "3.3.1")
|
2021-09-28 02:34:41 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "pyproj" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-09-08 16:14:34 -04:00
|
|
|
|
"1gjg63irs44djyqbp9gg7s02d0y5i9cd1a83phyzp5fcj56y3n5k"))))
|
2021-09-28 02:34:41 -04:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'set-proj-path
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((proj (assoc-ref inputs "proj")))
|
|
|
|
|
(setenv "PROJ_DIR" proj)
|
|
|
|
|
(substitute* "pyproj/datadir.py"
|
|
|
|
|
(("(internal_datadir = ).*$" all var)
|
|
|
|
|
(string-append var "Path(\"" proj "/share/proj\")\n")))))))))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list proj))
|
2021-09-28 02:34:41 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-certifi))
|
2021-09-28 02:34:41 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-cython python-numpy python-pandas python-pytest
|
|
|
|
|
python-xarray))
|
2021-09-28 02:34:41 -04:00
|
|
|
|
(home-page "https://github.com/pyproj4/pyproj")
|
|
|
|
|
(synopsis
|
|
|
|
|
"Python interface to PROJ")
|
|
|
|
|
(description
|
|
|
|
|
"This package provides a Python interface to PROJ, a cartographic
|
|
|
|
|
projections and coordinate transformations library.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2021-09-28 02:34:43 -04:00
|
|
|
|
(define-public python-fiona
|
|
|
|
|
(package
|
|
|
|
|
(name "python-fiona")
|
|
|
|
|
(version "1.8.20")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "Fiona" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0fql7i7dg1xpbadmk8d26dwp91v7faixxc4wq14zg0kvhp9041d7"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'remove-local-fiona
|
|
|
|
|
(lambda _
|
|
|
|
|
; This would otherwise interfere with finding the installed
|
|
|
|
|
; fiona when running tests.
|
|
|
|
|
(delete-file-recursively "fiona")))
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
2022-01-19 07:48:54 -05:00
|
|
|
|
(setenv "GDAL_ENABLE_DEPRECATED_DRIVER_GTM" "YES")
|
2021-09-28 02:34:43 -04:00
|
|
|
|
(when tests?
|
2022-01-19 07:48:54 -05:00
|
|
|
|
(invoke "pytest"
|
|
|
|
|
"-m" "not network and not wheel"
|
|
|
|
|
;; FIXME: Find why the
|
|
|
|
|
;; test_no_append_driver_cannot_append[PCIDSK]
|
|
|
|
|
;; test is failing.
|
|
|
|
|
"-k" "not test_no_append_driver_cannot_append")))))))
|
2021-09-28 02:34:43 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gdal))
|
2021-09-28 02:34:43 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-attrs
|
|
|
|
|
python-certifi
|
|
|
|
|
python-click
|
|
|
|
|
python-click-plugins
|
|
|
|
|
python-cligj
|
|
|
|
|
python-munch
|
|
|
|
|
python-setuptools
|
|
|
|
|
python-six
|
|
|
|
|
python-pytz))
|
2021-09-28 02:34:43 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gdal ; for gdal-config
|
|
|
|
|
python-boto3
|
|
|
|
|
python-cython
|
|
|
|
|
python-pytest
|
|
|
|
|
python-pytest-cov))
|
2021-09-28 02:34:43 -04:00
|
|
|
|
(home-page "https://github.com/Toblerity/Fiona")
|
|
|
|
|
(synopsis
|
|
|
|
|
"Fiona reads and writes spatial data files")
|
|
|
|
|
(description
|
|
|
|
|
"Fiona is GDAL’s neat and nimble vector API for Python programmers.
|
|
|
|
|
Fiona is designed to be simple and dependable. It focuses on reading
|
|
|
|
|
and writing data in standard Python IO style and relies upon familiar
|
|
|
|
|
Python types and protocols such as files, dictionaries, mappings, and
|
|
|
|
|
iterators instead of classes specific to OGR. Fiona can read and write
|
|
|
|
|
real-world data using multi-layered GIS formats and zipped virtual file
|
|
|
|
|
systems and integrates readily with other Python GIS packages such as
|
|
|
|
|
pyproj, Rtree, and Shapely.")
|
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
|
2021-09-28 02:34:44 -04:00
|
|
|
|
(define-public python-geopandas
|
|
|
|
|
(package
|
|
|
|
|
(name "python-geopandas")
|
2021-12-31 10:42:19 -05:00
|
|
|
|
(version "0.10.2")
|
2021-09-28 02:34:44 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "geopandas" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-12-31 10:42:19 -05:00
|
|
|
|
"1nvim2i47ap1zdwy6kxydskf1cir5g4ij8124wvmrqij0zklggzg"))))
|
2021-09-28 02:34:44 -04:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(invoke "pytest"
|
2022-05-18 15:21:11 -04:00
|
|
|
|
; Disable tests that fail due to incompatibilities
|
|
|
|
|
; with our pandas version.
|
|
|
|
|
"-k"
|
|
|
|
|
(string-append
|
|
|
|
|
"not test_getitem_invalid"
|
|
|
|
|
" and not test_value_counts"
|
|
|
|
|
" and not test_setitem_invalid"
|
|
|
|
|
" and not test_insert_invalid")
|
2021-09-28 02:34:44 -04:00
|
|
|
|
; Disable tests that require internet access.
|
|
|
|
|
"-m" "not web")))))))
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-fiona python-pandas python-pyproj python-shapely))
|
2021-09-28 02:34:44 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-pytest))
|
2021-09-28 02:34:44 -04:00
|
|
|
|
(home-page "http://geopandas.org")
|
|
|
|
|
(synopsis "Geographic pandas extensions")
|
|
|
|
|
(description "The goal of GeoPandas is to make working with
|
|
|
|
|
geospatial data in Python easier. It combines the capabilities of
|
|
|
|
|
Pandas and Shapely, providing geospatial operations in Pandas and a
|
|
|
|
|
high-level interface to multiple geometries to Shapely. GeoPandas
|
|
|
|
|
enables you to easily do operations in Python that would otherwise
|
|
|
|
|
require a spatial database such as PostGIS.")
|
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
|
2022-05-19 15:46:06 -04:00
|
|
|
|
(define-public python-osmnx
|
|
|
|
|
(package
|
|
|
|
|
(name "python-osmnx")
|
|
|
|
|
(version "1.1.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
; Fetch from github as the pypi package is missing the tests dir.
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/gboeing/osmnx")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1n8qjn184p5a2s3j6x6iyc1i7p3l3xnbqqxm6ajwgwv6j5fw1d5a"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
|
|
|
|
; TODO: Disable network tests
|
|
|
|
|
(invoke "pytest" "tests"
|
|
|
|
|
"-k"
|
|
|
|
|
(string-append
|
|
|
|
|
;; The following tests require network access.
|
|
|
|
|
"not test_geocode_to_gdf"
|
|
|
|
|
" and not test_stats"
|
|
|
|
|
" and not test_osm_xml"
|
|
|
|
|
" and not test_elevation"
|
|
|
|
|
" and not test_routing"
|
|
|
|
|
" and not test_plots"
|
|
|
|
|
" and not test_find_nearest"
|
|
|
|
|
" and not test_api_endpoints"
|
|
|
|
|
" and not test_graph_save_load"
|
|
|
|
|
" and not test_graph_from_functions"
|
|
|
|
|
" and not test_geometries"))))))))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
(list python-folium
|
|
|
|
|
python-geopandas
|
|
|
|
|
python-matplotlib
|
|
|
|
|
python-networkx
|
|
|
|
|
python-numpy
|
|
|
|
|
python-pandas
|
|
|
|
|
python-pyproj
|
|
|
|
|
python-requests
|
|
|
|
|
python-rtree
|
|
|
|
|
python-shapely))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list python-numpy python-pytest))
|
|
|
|
|
(home-page "https://github.com/gboeing/osmnx")
|
|
|
|
|
(synopsis
|
|
|
|
|
"Retrieve, model, analyze, and visualize OpenStreetMap street networks")
|
|
|
|
|
(description
|
|
|
|
|
"OSMnx is a Python library that lets you download geospatial data
|
|
|
|
|
from OpenStreetMap and model, project, visualize, and analyze real-world
|
|
|
|
|
street networks and any other geospatial geometries. You can download
|
|
|
|
|
and model walkable, drivable, or bikeable urban networks with a single
|
|
|
|
|
line of Python code then easily analyze and visualize them. You can
|
|
|
|
|
just as easily download and work with other infrastructure types,
|
|
|
|
|
amenities/points of interest, building footprints, elevation data,
|
|
|
|
|
street bearings/orientations, and speed/travel time.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2018-02-15 17:09:37 -05:00
|
|
|
|
(define-public mapnik
|
2022-09-15 19:45:04 -04:00
|
|
|
|
;; There hasn't been a release since early 2021, and it fails to build with
|
|
|
|
|
;; Boost 1.77+.
|
|
|
|
|
(let ((commit "81103491b467e17218140f50bc0bb9dc8c1f0317")
|
|
|
|
|
(revision "0"))
|
|
|
|
|
(package
|
|
|
|
|
(name "mapnik")
|
|
|
|
|
(version (git-version "3.1.0" revision commit))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/mapnik/mapnik")
|
|
|
|
|
(commit commit)
|
|
|
|
|
;; TODO: Un-bundle mapbox dependencies (not yet packaged).
|
|
|
|
|
(recursive? #t))) ;for mapbox dependencies and test data
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "094nam57bdd5nak88qy33z2p3kjahk3vk2nk56m5jkcr5d3hlnx2"))))
|
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:cmake cmake ;for FIND_PACKAGE_ARGS
|
|
|
|
|
#:configure-flags
|
|
|
|
|
#~(list (string-append "-DCMAKE_CXX_FLAGS=-I"
|
|
|
|
|
#$(this-package-native-input "catch2")
|
|
|
|
|
"/include/catch2"))
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'use-system-catch2
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "test/CMakeLists.txt"
|
|
|
|
|
(("GIT_TAG.*v2.13.7" all)
|
|
|
|
|
(string-append all "\n"
|
|
|
|
|
" FIND_PACKAGE_ARGS NAMES Catch2"))
|
|
|
|
|
(("^include.*Catch2_SOURCE_DIR.*contrib/Catch.cmake.*")
|
|
|
|
|
"include(Catch)\n"))))
|
|
|
|
|
(add-after 'unpack 'disable-problematic-tests
|
|
|
|
|
(lambda _
|
|
|
|
|
;; The 'ogr' test fails for unknown reasons. Mark it as
|
|
|
|
|
;; expected to fail (see:
|
|
|
|
|
;; https://github.com/mapnik/mapnik/issues/4329).
|
2022-09-15 20:49:10 -04:00
|
|
|
|
(substitute* "test/unit/datasource/ogr.cpp"
|
2022-09-15 19:45:04 -04:00
|
|
|
|
(("TEST_CASE\\(\"ogr\"" all)
|
|
|
|
|
(string-append all ", \"[!shouldfail]\""))))))))
|
|
|
|
|
(native-inputs
|
2022-09-15 20:08:21 -04:00
|
|
|
|
(list catch2
|
2022-09-15 19:45:04 -04:00
|
|
|
|
pkg-config
|
|
|
|
|
postgresql))
|
|
|
|
|
(inputs
|
|
|
|
|
(list boost
|
|
|
|
|
cairo
|
|
|
|
|
freetype
|
|
|
|
|
gdal
|
|
|
|
|
harfbuzz
|
|
|
|
|
icu4c
|
|
|
|
|
libjpeg-turbo
|
|
|
|
|
libpng
|
|
|
|
|
libtiff
|
|
|
|
|
libwebp
|
|
|
|
|
libxml2
|
|
|
|
|
proj
|
|
|
|
|
sqlite
|
|
|
|
|
zlib))
|
|
|
|
|
(home-page "https://mapnik.org/")
|
|
|
|
|
(synopsis "Toolkit for developing mapping applications")
|
|
|
|
|
(description "Mapnik is a toolkit for developing mapping applications. It
|
2018-02-15 17:09:37 -05:00
|
|
|
|
is basically a collection of geographic objects like maps, layers,
|
|
|
|
|
datasources, features, and geometries. At its core is a C++ shared library
|
|
|
|
|
providing algorithms and patterns for spatial data access and visualization.
|
|
|
|
|
The library does not rely on any specific windowing system and can be deployed
|
|
|
|
|
to any server environment. It is intended to play fair in a multi-threaded
|
|
|
|
|
environment and is aimed primarily, but not exclusively, at web-based
|
|
|
|
|
development.")
|
2022-09-15 19:45:04 -04:00
|
|
|
|
(license (list license:lgpl2.1+
|
|
|
|
|
;; demo/viewer, demo/python/rundemo.py
|
|
|
|
|
license:gpl2+
|
|
|
|
|
;; deps/boost, deps/mapbox, deps/agg/include/agg_conv_offset.h
|
|
|
|
|
license:boost1.0
|
|
|
|
|
;; deps/mapnik/sparsehash
|
|
|
|
|
license:bsd-3
|
|
|
|
|
;; deps/agg
|
|
|
|
|
(license:non-copyleft "file://deps/agg/copying"))))))
|
2018-02-15 17:09:37 -05:00
|
|
|
|
|
2018-02-21 18:10:51 -05:00
|
|
|
|
(define-public spatialite-gui
|
|
|
|
|
(package
|
|
|
|
|
(name "spatialite-gui")
|
gnu: spatialite-gui: Update to 2.1.0-beta1.
* gnu/packages/geo.scm (spatialite-gui): Update to 2.1.0-beta1.
[inputs]: Replace proj.4 with proj and wxwidgets-2 with wxwidgets.
Add curl, giflib, librasterlite2, librttopo, libwebp, libxlsxwriter,
lz4, minizip, openjpeg, postgresql, virtualpg, zstd.
Remove libgaiagraphics and zlib.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2021-03-28 04:40:22 -04:00
|
|
|
|
(version "2.1.0-beta1")
|
2018-02-21 18:10:51 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: spatialite-gui: Update to 2.1.0-beta1.
* gnu/packages/geo.scm (spatialite-gui): Update to 2.1.0-beta1.
[inputs]: Replace proj.4 with proj and wxwidgets-2 with wxwidgets.
Add curl, giflib, librasterlite2, librttopo, libwebp, libxlsxwriter,
lz4, minizip, openjpeg, postgresql, virtualpg, zstd.
Remove libgaiagraphics and zlib.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2021-03-28 04:40:22 -04:00
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://www.gaia-gis.it/gaia-sins/spatialite-gui-sources/"
|
|
|
|
|
"spatialite_gui-" version ".tar.gz"))
|
2018-02-21 18:10:51 -05:00
|
|
|
|
(sha256
|
gnu: spatialite-gui: Update to 2.1.0-beta1.
* gnu/packages/geo.scm (spatialite-gui): Update to 2.1.0-beta1.
[inputs]: Replace proj.4 with proj and wxwidgets-2 with wxwidgets.
Add curl, giflib, librasterlite2, librttopo, libwebp, libxlsxwriter,
lz4, minizip, openjpeg, postgresql, virtualpg, zstd.
Remove libgaiagraphics and zlib.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2021-03-28 04:40:22 -04:00
|
|
|
|
(base32 "0cyv4cycl073p9lnnnglcb72qn71g8h9g5zn4gzw7swcy5nxjj5s"))))
|
2018-02-21 18:10:51 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2018-02-21 18:10:51 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list curl
|
|
|
|
|
freexl
|
|
|
|
|
geos
|
|
|
|
|
giflib
|
|
|
|
|
libjpeg-turbo
|
|
|
|
|
librasterlite2
|
|
|
|
|
librttopo
|
|
|
|
|
libspatialite
|
|
|
|
|
libwebp
|
|
|
|
|
libxlsxwriter
|
|
|
|
|
libxml2
|
|
|
|
|
lz4
|
|
|
|
|
minizip
|
|
|
|
|
openjpeg
|
|
|
|
|
postgresql
|
|
|
|
|
proj
|
|
|
|
|
sqlite
|
|
|
|
|
virtualpg
|
|
|
|
|
wxwidgets
|
|
|
|
|
`(,zstd "lib")))
|
2020-03-11 14:33:25 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-gui
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Fix for the GUI not showing up.
|
|
|
|
|
(substitute* "Main.cpp"
|
|
|
|
|
(("Hide\\(\\);") ""))
|
|
|
|
|
#t)))))
|
2018-02-21 18:10:51 -05:00
|
|
|
|
(synopsis "Graphical user interface for SpatiaLite")
|
|
|
|
|
(description "Spatialite-gui provides a visual interface for viewing and
|
|
|
|
|
maintaining a spatialite database. You can easily see the structure of the
|
|
|
|
|
tables and data contents using point and click functions, many of which
|
|
|
|
|
construct common SQL queries, or craft your own SQL queries.")
|
|
|
|
|
(home-page "https://www.gaia-gis.it/fossil/spatialite_gui/index")
|
|
|
|
|
(license license:gpl3+)))
|
2018-02-17 16:11:25 -05:00
|
|
|
|
|
2018-04-16 04:36:53 -04:00
|
|
|
|
(define-public gdal
|
|
|
|
|
(package
|
|
|
|
|
(name "gdal")
|
2022-08-16 05:20:52 -04:00
|
|
|
|
(version "3.5.1")
|
2018-04-16 04:36:53 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://download.osgeo.org/gdal/" version "/gdal-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-08-16 05:20:52 -04:00
|
|
|
|
"1l93q7xf6qx9ck5axfkf3ygmvclxkvrjd8x00ckn7j0d0750ci3w"))
|
2018-04-16 04:36:53 -04:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
`(begin
|
|
|
|
|
;; TODO: frmts contains a lot more bundled code.
|
|
|
|
|
(for-each delete-file-recursively
|
|
|
|
|
;; bundled code
|
|
|
|
|
'("frmts/png/libpng"
|
|
|
|
|
"frmts/gif/giflib"
|
|
|
|
|
"frmts/jpeg/libjpeg"
|
|
|
|
|
"frmts/jpeg/libjpeg12"
|
|
|
|
|
"frmts/gtiff/libtiff"
|
|
|
|
|
"frmts/gtiff/libgeotiff"
|
|
|
|
|
"frmts/zlib"
|
|
|
|
|
"ogr/ogrsf_frmts/geojson/libjson"))))))
|
2022-07-03 15:57:26 -04:00
|
|
|
|
(build-system cmake-build-system)
|
2018-04-16 04:36:53 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f
|
|
|
|
|
#:configure-flags
|
2022-07-03 15:57:26 -04:00
|
|
|
|
(list "-DGDAL_USE_INTERNAL_LIBS=WHEN_NO_EXTERNAL"
|
|
|
|
|
"-DGDAL_USE_JPEG12_INTERNAL=OFF")))
|
2018-04-16 04:36:53 -04:00
|
|
|
|
(inputs
|
2022-06-25 07:47:19 -04:00
|
|
|
|
(list curl
|
|
|
|
|
expat
|
2021-12-13 11:18:24 -05:00
|
|
|
|
freexl
|
|
|
|
|
geos
|
|
|
|
|
giflib
|
|
|
|
|
json-c
|
|
|
|
|
libgeotiff
|
|
|
|
|
libjpeg-turbo
|
|
|
|
|
libpng
|
|
|
|
|
libtiff
|
|
|
|
|
libwebp
|
|
|
|
|
netcdf
|
2022-06-25 07:47:19 -04:00
|
|
|
|
openssl
|
2022-07-03 15:57:26 -04:00
|
|
|
|
pcre2
|
2021-12-13 11:18:24 -05:00
|
|
|
|
postgresql ; libpq
|
|
|
|
|
proj
|
2022-07-03 15:57:26 -04:00
|
|
|
|
qhull
|
2021-12-13 11:18:24 -05:00
|
|
|
|
sqlite
|
|
|
|
|
zlib))
|
2020-07-16 16:40:45 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2019-12-26 05:50:16 -05:00
|
|
|
|
(home-page "https://gdal.org/")
|
2018-04-16 04:36:53 -04:00
|
|
|
|
(synopsis "Raster and vector geospatial data format library")
|
|
|
|
|
(description "GDAL is a translator library for raster and vector geospatial
|
|
|
|
|
data formats. As a library, it presents a single raster abstract data model
|
|
|
|
|
and single vector abstract data model to the calling application for all
|
|
|
|
|
supported formats. It also comes with a variety of useful command line
|
|
|
|
|
utilities for data translation and processing.")
|
|
|
|
|
(license (list
|
|
|
|
|
;; general license
|
|
|
|
|
license:expat
|
|
|
|
|
;; frmts/gtiff/tif_float.c, frmts/pcraster/libcsf,
|
|
|
|
|
;; ogr/ogrsf_frmts/dxf/intronurbs.cpp, frmts/pdf/pdfdataset.cpp
|
|
|
|
|
;; frmts/mrf/
|
|
|
|
|
license:bsd-3
|
|
|
|
|
;; frmts/hdf4/hdf-eos/*
|
|
|
|
|
;; similar to the expat license, but without guarantee exclusion
|
|
|
|
|
(license:non-copyleft "file://frmts/hdf4/hdf-eos/README")
|
|
|
|
|
;; frmts/grib/degrib/
|
|
|
|
|
license:public-domain ; with guarantee exclusion
|
|
|
|
|
;; port/cpl_minizip*
|
|
|
|
|
;; Some bsd-inspired license
|
|
|
|
|
(license:non-copyleft "file://port/LICENCE_minizip")
|
|
|
|
|
;; alg/internal_libqhull
|
|
|
|
|
;; Some 5-clause license
|
|
|
|
|
(license:non-copyleft "file://alg/internal_libqhull/COPYING.txt")
|
|
|
|
|
;; frmts/mrf/libLERC
|
|
|
|
|
license:asl2.0))))
|
2018-04-16 04:45:52 -04:00
|
|
|
|
|
2019-07-20 10:39:33 -04:00
|
|
|
|
(define-public python-gdal
|
|
|
|
|
(package (inherit gdal)
|
|
|
|
|
(name "python-gdal")
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f ; no tests
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'chdir
|
|
|
|
|
(lambda _
|
|
|
|
|
(chdir "swig/python")
|
|
|
|
|
#t)))))
|
|
|
|
|
(native-inputs '())
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-numpy))
|
2019-07-20 10:39:33 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gdal))
|
2019-07-20 10:39:33 -04:00
|
|
|
|
(synopsis "GDAL (Geospatial Data Abstraction Library) python bindings")))
|
|
|
|
|
|
2021-05-17 22:55:58 -04:00
|
|
|
|
(define-public python-pyshp
|
|
|
|
|
(package
|
|
|
|
|
(name "python-pyshp")
|
|
|
|
|
(version "2.1.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/GeospatialPython/pyshp")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0jsraqzq82pw19wvx84x7w5cs8agr44a9b5y0jjw540wim4xa73r"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
;; This is the only test file.
|
|
|
|
|
(invoke "python" "-m" "pytest" "test_shapefile.py")))))))
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-pytest python-pytest-runner))
|
2021-05-17 22:55:58 -04:00
|
|
|
|
(home-page "https://github.com/GeospatialPython/pyshp")
|
|
|
|
|
(synopsis "Read/write support for ESRI Shapefile format")
|
|
|
|
|
(description
|
|
|
|
|
"The Python Shapefile Library (PyShp) reads and writes ESRI Shapefiles.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2021-05-18 19:54:14 -04:00
|
|
|
|
(define-public python-cartopy
|
|
|
|
|
(package
|
|
|
|
|
(name "python-cartopy")
|
|
|
|
|
;; This is a post-release fix that adds build_ext to setup.py.
|
2022-09-08 16:14:35 -04:00
|
|
|
|
(version "0.20.3")
|
2021-05-18 19:54:14 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "Cartopy" version))
|
|
|
|
|
(sha256
|
2022-09-08 16:14:35 -04:00
|
|
|
|
(base32 "01lhnkhw22jp6hnrs5qvgkq4fqcni2sx7ydiyv8w8xxx5wpglq0d"))))
|
2021-05-18 19:54:14 -04:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
|
|
|
|
(invoke "python" "-m" "pytest" "--pyargs" "cartopy"
|
|
|
|
|
;; These tests require online data.
|
|
|
|
|
"-m" "not natural_earth and not network"
|
|
|
|
|
;; This one too but it's not marked as such.
|
|
|
|
|
"-k" "not test_gridliner_labels_bbox_style")))))))
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-matplotlib
|
|
|
|
|
python-numpy
|
|
|
|
|
python-pykdtree
|
2022-09-08 16:14:35 -04:00
|
|
|
|
python-pyproj
|
2021-12-13 11:18:24 -05:00
|
|
|
|
python-pyshp
|
|
|
|
|
python-scipy
|
|
|
|
|
python-shapely))
|
2021-05-18 19:54:14 -04:00
|
|
|
|
(inputs
|
2022-09-08 16:14:35 -04:00
|
|
|
|
(list geos
|
|
|
|
|
;; cartopy's setup.py looks for the proj executable.
|
|
|
|
|
;; Not sure if it actually makes use of it since it
|
|
|
|
|
;; probably uses proj only through pyproj.
|
|
|
|
|
proj))
|
2021-05-18 19:54:14 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-cython python-flufl-lock python-pytest))
|
2021-05-18 19:54:14 -04:00
|
|
|
|
(home-page "https://scitools.org.uk/cartopy/docs/latest/")
|
|
|
|
|
(synopsis "Cartographic library for visualisation")
|
|
|
|
|
(description
|
|
|
|
|
"Cartopy is a Python package designed to make drawing maps for data
|
|
|
|
|
analysis and visualisation easy.
|
|
|
|
|
|
|
|
|
|
It features:
|
|
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
|
@item object oriented projection definitions
|
|
|
|
|
@item point, line, polygon and image transformations between projections
|
|
|
|
|
@item integration to expose advanced mapping in Matplotlib with a simple and
|
|
|
|
|
intuitive interface
|
|
|
|
|
@item powerful vector data handling by integrating shapefile reading with
|
|
|
|
|
Shapely capabilities
|
|
|
|
|
@end itemize")
|
|
|
|
|
(license license:lgpl3+)))
|
|
|
|
|
|
2018-04-16 04:45:52 -04:00
|
|
|
|
(define-public postgis
|
|
|
|
|
(package
|
|
|
|
|
(name "postgis")
|
2022-03-24 16:35:32 -04:00
|
|
|
|
(version "3.2.1")
|
2018-04-16 04:45:52 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://download.osgeo.org/postgis/source/postgis-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-03-24 16:35:32 -04:00
|
|
|
|
"0gl9d6xy2an82ldb9sixz5blyngjryq8m3509fr38ffawvfniazv"))))
|
2018-04-16 04:45:52 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f
|
|
|
|
|
#:make-flags
|
|
|
|
|
(list (string-append "datadir=" (assoc-ref %outputs "out") "/share")
|
|
|
|
|
(string-append "docdir="(assoc-ref %outputs "out") "/share/doc")
|
|
|
|
|
(string-append "pkglibdir="(assoc-ref %outputs "out") "/lib")
|
|
|
|
|
(string-append "bindir=" (assoc-ref %outputs "out") "/bin"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'fix-install-path
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(substitute* '("raster/loader/Makefile" "raster/scripts/python/Makefile")
|
|
|
|
|
(("\\$\\(DESTDIR\\)\\$\\(PGSQL_BINDIR\\)")
|
|
|
|
|
(string-append (assoc-ref outputs "out") "/bin"))))))))
|
|
|
|
|
(inputs
|
2021-12-23 13:26:30 -05:00
|
|
|
|
(list gdal
|
|
|
|
|
geos
|
|
|
|
|
giflib
|
|
|
|
|
json-c
|
|
|
|
|
libjpeg-turbo
|
|
|
|
|
libxml2
|
2022-06-25 13:34:35 -04:00
|
|
|
|
openssl
|
2021-12-23 13:26:30 -05:00
|
|
|
|
pcre
|
|
|
|
|
postgresql
|
|
|
|
|
protobuf-c
|
|
|
|
|
proj))
|
2018-04-16 04:45:52 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list perl pkg-config))
|
2018-04-16 04:45:52 -04:00
|
|
|
|
(home-page "https://postgis.net")
|
|
|
|
|
(synopsis "Spatial database extender for PostgreSQL")
|
|
|
|
|
(description "PostGIS is a spatial database extender for PostgreSQL
|
|
|
|
|
object-relational database. It adds support for geographic objects allowing
|
2018-10-04 16:23:54 -04:00
|
|
|
|
location queries to be run in SQL. This package provides a PostgreSQL
|
|
|
|
|
extension.")
|
2018-04-16 04:45:52 -04:00
|
|
|
|
(license (list
|
|
|
|
|
;; General license
|
|
|
|
|
license:gpl2+
|
|
|
|
|
;; loader/dbfopen, safileio.*, shapefil.h, shpopen.c
|
|
|
|
|
license:expat
|
|
|
|
|
;; loader/getopt.*
|
|
|
|
|
license:public-domain
|
|
|
|
|
;; doc/xsl
|
|
|
|
|
license:bsd-3 ; files only say "BSD"
|
|
|
|
|
;; doc
|
|
|
|
|
license:cc-by-sa3.0))))
|
2018-09-23 16:36:15 -04:00
|
|
|
|
|
|
|
|
|
(define-public tegola
|
|
|
|
|
(package
|
|
|
|
|
(name "tegola")
|
|
|
|
|
(version "0.7.0")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://github.com/go-spatial/tegola/archive/v"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"09vnzxfn0r70kmd776kcdfqxhzdj11syxa0b27z4ci1k367v7viw"))))
|
|
|
|
|
(build-system go-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:import-path "github.com/go-spatial/tegola/cmd/tegola"
|
2019-05-06 23:10:36 -04:00
|
|
|
|
#:unpack-path "github.com/go-spatial/tegola"
|
2018-09-23 16:36:15 -04:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'set-version
|
|
|
|
|
(lambda _
|
2019-05-06 23:10:36 -04:00
|
|
|
|
(with-directory-excursion "src/github.com/go-spatial/tegola"
|
2018-09-23 16:36:15 -04:00
|
|
|
|
(substitute* '("cmd/tegola/cmd/root.go"
|
|
|
|
|
"cmd/tegola_lambda/main.go")
|
|
|
|
|
(("version not set") ,version)))
|
|
|
|
|
#t)))))
|
2020-01-18 19:06:10 -05:00
|
|
|
|
(home-page "https://tegola.io")
|
2018-09-23 16:36:15 -04:00
|
|
|
|
(synopsis "Vector tile server for maps")
|
|
|
|
|
(description "Tegola is a free vector tile server written in Go. Tegola
|
|
|
|
|
takes geospatial data and slices it into vector tiles that can be efficiently
|
|
|
|
|
delivered to any client.")
|
|
|
|
|
(license (list
|
|
|
|
|
license:expat
|
|
|
|
|
;; Some packages in vendor have other licenses
|
|
|
|
|
license:asl2.0
|
|
|
|
|
license:bsd-2
|
|
|
|
|
license:bsd-3
|
|
|
|
|
license:wtfpl2))))
|
2018-09-23 16:36:45 -04:00
|
|
|
|
|
|
|
|
|
(define-public imposm3
|
|
|
|
|
(package
|
|
|
|
|
(name "imposm3")
|
2021-12-16 05:20:18 -05:00
|
|
|
|
(version "0.11.1")
|
2018-09-23 16:36:45 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/omniscale/imposm3/archive/v"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-12-16 05:20:18 -05:00
|
|
|
|
"1w7b221z5k9254zn01imycxkyw62xigqizhwvrgxqmq1m9r5410l"))))
|
2018-09-23 16:36:45 -04:00
|
|
|
|
(build-system go-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:import-path "github.com/omniscale/imposm3/cmd/imposm"
|
2019-05-06 23:05:05 -04:00
|
|
|
|
#:unpack-path "github.com/omniscale/imposm3"
|
2018-09-23 16:36:45 -04:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'set-version
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "src/github.com/omniscale/imposm3/version.go"
|
|
|
|
|
(("0.0.0-dev") ,version))
|
|
|
|
|
#t)))))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list geos leveldb))
|
2018-09-23 16:36:45 -04:00
|
|
|
|
(home-page "https://imposm.org/")
|
|
|
|
|
(synopsis "OpenStreetMap importer for PostGIS")
|
|
|
|
|
(description "Imposm is an importer for OpenStreetMap data. It reads PBF
|
|
|
|
|
files and imports the data into PostgreSQL/PostGIS databases. It is designed
|
|
|
|
|
to create databases that are optimized for rendering/tile/map-services.")
|
|
|
|
|
(license (list
|
|
|
|
|
license:asl2.0
|
|
|
|
|
;; Some dependencies in vendor have different licenses
|
|
|
|
|
license:expat
|
|
|
|
|
license:bsd-2
|
|
|
|
|
license:bsd-3))))
|
2018-09-27 16:16:31 -04:00
|
|
|
|
|
2018-09-27 16:38:32 -04:00
|
|
|
|
(define-public libosmium
|
|
|
|
|
(package
|
|
|
|
|
(name "libosmium")
|
2022-02-08 04:02:18 -05:00
|
|
|
|
(version "2.18.0")
|
2018-09-27 16:38:32 -04:00
|
|
|
|
(source
|
2019-04-08 17:52:43 -04:00
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/osmcode/libosmium")
|
2019-04-08 17:52:43 -04:00
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2022-02-08 04:02:18 -05:00
|
|
|
|
(base32 "0fh57mpii1ksacwfx5rz213j896aklib53jbybld2i517q2mmxr0"))))
|
2018-09-27 16:38:32 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list boost
|
|
|
|
|
bzip2
|
|
|
|
|
expat
|
|
|
|
|
gdal
|
|
|
|
|
geos
|
2021-12-16 06:56:10 -05:00
|
|
|
|
lz4
|
2021-12-13 11:18:24 -05:00
|
|
|
|
proj
|
|
|
|
|
protozero
|
|
|
|
|
sparsehash
|
|
|
|
|
utfcpp
|
|
|
|
|
zlib))
|
2018-09-27 16:38:32 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list doxygen))
|
2018-09-27 16:38:32 -04:00
|
|
|
|
(home-page "https://osmcode.org/libosmium/")
|
|
|
|
|
(synopsis "C++ library for working with OpenStreetMap data")
|
|
|
|
|
(description "Libosmium is a fast and flexible C++ library for working with
|
|
|
|
|
OpenStreetMap data.")
|
|
|
|
|
(license license:boost1.0)))
|
2018-09-23 16:37:17 -04:00
|
|
|
|
|
2022-02-08 04:00:48 -05:00
|
|
|
|
(define-public osmium-tool
|
|
|
|
|
(package
|
|
|
|
|
(name "osmium-tool")
|
|
|
|
|
(version "1.14.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/osmcode/osmium-tool")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0zgyqyrs89vch0qnkh9m5xq079sr2wmydy5zz4l8xbysbjf6xry5"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
;; Remove bundled libraries.
|
|
|
|
|
'(delete-file-recursively "include/rapidjson"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
(list libosmium
|
|
|
|
|
rapidjson))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list pandoc))
|
|
|
|
|
(home-page "https://osmcode.org/osmium-tool/")
|
|
|
|
|
(synopsis "Osmium command-line tool")
|
|
|
|
|
(description "Command line tool for working with OpenStreetMap data
|
|
|
|
|
based on the Osmium library.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2018-09-23 16:37:17 -04:00
|
|
|
|
(define-public osm2pgsql
|
|
|
|
|
(package
|
|
|
|
|
(name "osm2pgsql")
|
2022-08-15 19:38:30 -04:00
|
|
|
|
(version "1.7.0")
|
2019-04-08 17:53:04 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/openstreetmap/osm2pgsql")
|
2019-04-08 17:53:04 -04:00
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2022-08-15 19:38:30 -04:00
|
|
|
|
(base32 "15fxr4xq7siy237763l7nswx7v0swr3qzs2h3zkjzgvajw4p6qii"))
|
2019-04-08 17:53:04 -04:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
2022-08-15 19:38:30 -04:00
|
|
|
|
;; Remove bundled libraries.
|
|
|
|
|
'(delete-file-recursively "contrib"))))
|
2018-09-23 16:37:17 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f; tests fail because we need to setup a database
|
|
|
|
|
#:configure-flags
|
2022-08-15 19:38:30 -04:00
|
|
|
|
(list "-DEXTERNAL_LIBOSMIUM=ON"
|
|
|
|
|
"-DEXTERNAL_PROTOZERO=ON"
|
|
|
|
|
"-DEXTERNAL_FMT=ON"
|
|
|
|
|
"-DEXTERNAL_RAPIDJSON=ON")))
|
2018-09-23 16:37:17 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list boost
|
|
|
|
|
bzip2
|
|
|
|
|
expat
|
2022-08-15 19:38:30 -04:00
|
|
|
|
fmt
|
2021-12-13 11:18:24 -05:00
|
|
|
|
libosmium
|
|
|
|
|
lua
|
|
|
|
|
postgresql
|
|
|
|
|
proj
|
|
|
|
|
protozero
|
2022-08-15 19:38:30 -04:00
|
|
|
|
rapidjson
|
2021-12-13 11:18:24 -05:00
|
|
|
|
zlib))
|
2018-09-23 16:37:17 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python python-psycopg2))
|
2018-09-23 16:37:17 -04:00
|
|
|
|
(home-page "https://github.com/openstreetmap/osm2pgsql")
|
|
|
|
|
(synopsis "OSM data importer to postgresql")
|
|
|
|
|
(description "Osm2pgsql is a tool for loading OpenStreetMap data into a
|
|
|
|
|
PostgreSQL / PostGIS database suitable for applications like rendering into a
|
|
|
|
|
map, geocoding with Nominatim, or general analysis.")
|
|
|
|
|
(license license:gpl2+)))
|
2018-09-27 16:12:46 -04:00
|
|
|
|
|
|
|
|
|
(define-public tippecanoe
|
|
|
|
|
(package
|
|
|
|
|
(name "tippecanoe")
|
2021-04-03 05:56:20 -04:00
|
|
|
|
(version "1.36.0")
|
2019-04-08 17:53:18 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/mapbox/tippecanoe")
|
2019-04-08 17:53:18 -04:00
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2021-04-03 05:56:20 -04:00
|
|
|
|
(base32 "0lbmhly4ivnqc6qk1k3sdqvsg6x3nfd8gnjx846bhqj4wag3f88m"))))
|
2018-09-27 16:12:46 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases (delete 'configure))
|
|
|
|
|
#:test-target "test"
|
|
|
|
|
#:make-flags
|
2021-04-03 05:56:20 -04:00
|
|
|
|
(list (string-append "CC=" ,(cc-for-target))
|
2018-09-27 16:12:46 -04:00
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list perl sqlite zlib))
|
2018-09-27 16:12:46 -04:00
|
|
|
|
(home-page "https://github.com/mapbox/tippecanoe")
|
|
|
|
|
(synopsis "Vector tile server for maps")
|
|
|
|
|
(description "Tippecanoe creates scale-independent view of data, so that
|
|
|
|
|
the texture and density of features is visible at every zoom level, instead of
|
|
|
|
|
dropping features at lower levels.")
|
|
|
|
|
(license license:bsd-2)))
|
2019-05-27 11:05:16 -04:00
|
|
|
|
|
|
|
|
|
(define-public osmctools
|
|
|
|
|
(package
|
|
|
|
|
(name "osmctools")
|
|
|
|
|
(version "0.9")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://gitlab.com/osm-c-tools/osmctools")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1m8d3r1q1v05pkr8k9czrmb4xjszw6hvgsf3kn9pf0v14gpn4r8f"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list autoconf automake))
|
2019-05-27 11:05:16 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list zlib))
|
2019-05-27 11:05:16 -04:00
|
|
|
|
(home-page "https://gitlab.com/osm-c-tools/osmctools")
|
|
|
|
|
(synopsis "Tools to convert, filter and update OpenStreetMap data files")
|
|
|
|
|
(description "This project contains a few tools which are used in the
|
|
|
|
|
OpenStreetMap project. They can be used to convert, filter and update
|
|
|
|
|
OpenStreetMap data files.")
|
|
|
|
|
(license license:agpl3)))
|
2019-06-14 13:27:50 -04:00
|
|
|
|
|
|
|
|
|
(define-public osm-gps-map
|
|
|
|
|
(package
|
|
|
|
|
(name "osm-gps-map")
|
|
|
|
|
(version "1.1.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://github.com/nzjrs/osm-gps-map/releases/download/"
|
|
|
|
|
version "/osm-gps-map-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"11imsf4cz1dpxdjh178k2s29axmq86rkfg1pqmn7incyxmjzhbwg"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gnome-common gtk-doc/stable pkg-config))
|
2019-06-14 13:27:50 -04:00
|
|
|
|
(inputs
|
2021-12-13 16:15:07 -05:00
|
|
|
|
(list cairo glib gobject-introspection gtk+ libsoup-minimal-2))
|
2019-06-14 13:27:50 -04:00
|
|
|
|
(home-page "https://nzjrs.github.io/osm-gps-map/")
|
|
|
|
|
(synopsis "GTK+ widget for displaying OpenStreetMap tiles")
|
|
|
|
|
(description
|
|
|
|
|
"This package provides a GTK+ widget (and Python bindings) that when
|
|
|
|
|
given GPS coordinates,draws a GPS track, and points of interest on a moving
|
|
|
|
|
map display. Downloads map data from a number of websites, including
|
|
|
|
|
@url{https://www.openstreetmap.org}.")
|
|
|
|
|
(license license:gpl2+)))
|
2019-07-14 14:00:46 -04:00
|
|
|
|
|
|
|
|
|
(define-public xygrib
|
|
|
|
|
(package
|
|
|
|
|
(name "xygrib")
|
2019-09-27 06:24:06 -04:00
|
|
|
|
(version "1.2.6.1")
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/opengribs/XyGrib")
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
2021-09-16 01:18:16 -04:00
|
|
|
|
(patches (search-patches "xygrib-fix-finding-data.patch"))
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-09-27 06:24:06 -04:00
|
|
|
|
"0xzsm8pr0zjk3f8j880fg5n82jyxn8xf1330qmmq1fqv7rsrg9ia"))
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
2021-03-09 08:31:52 -05:00
|
|
|
|
'(begin
|
|
|
|
|
(delete-file-recursively "data/fonts")
|
|
|
|
|
;; Fixes compilation, can be removed with the next release.
|
|
|
|
|
;; Upstream link: https://github.com/opengribs/XyGrib/pull/255
|
|
|
|
|
(substitute* "src/SkewT.h"
|
|
|
|
|
(("QMessageBox>") "QMessageBox>\n#include <QPainterPath>"))
|
|
|
|
|
#t))))
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
2021-09-16 01:18:16 -04:00
|
|
|
|
`(#:configure-flags (list "-DGNU_PACKAGE=ON")
|
|
|
|
|
|
|
|
|
|
#:phases
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-directories
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((jpeg (assoc-ref inputs "openjpeg"))
|
|
|
|
|
(font (assoc-ref inputs "font-liberation")))
|
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
|
;; Skip looking for the static library.
|
|
|
|
|
(("\"libnova.a\"") ""))
|
|
|
|
|
;; Don't use the bundled font-liberation.
|
|
|
|
|
(substitute* "src/util/Font.cpp"
|
|
|
|
|
(("Util::pathFonts\\(\\)\\+\"liberation-fonts/\"")
|
|
|
|
|
(string-append "\"" font "/share/fonts/truetype/\"")))
|
|
|
|
|
(substitute* "src/util/Util.h"
|
|
|
|
|
(("pathData\\(\\)\\+\"data/fonts/\"")
|
2021-09-16 01:18:16 -04:00
|
|
|
|
(string-append "\"" font "/share/fonts/\"")))))))
|
2019-07-14 14:00:46 -04:00
|
|
|
|
#:tests? #f)) ; no tests
|
|
|
|
|
(native-inputs
|
2022-07-19 16:52:05 -04:00
|
|
|
|
(list qttools-5))
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list bzip2
|
|
|
|
|
font-liberation
|
|
|
|
|
libnova
|
|
|
|
|
libpng
|
|
|
|
|
openjpeg
|
2022-09-08 16:14:32 -04:00
|
|
|
|
proj-7
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtbase-5
|
|
|
|
|
zlib))
|
2021-09-16 01:18:16 -04:00
|
|
|
|
(native-search-paths
|
|
|
|
|
(list (search-path-specification
|
|
|
|
|
(variable "XDG_DATA_DIRS")
|
|
|
|
|
(files '("share")))))
|
2019-07-14 14:00:46 -04:00
|
|
|
|
(synopsis "Weather Forecast Visualization")
|
|
|
|
|
(description
|
|
|
|
|
"XyGrib is a Grib file reader and visualizes meteorological data providing
|
|
|
|
|
an off-line capability to analyse weather forecasts or hindcasts. It is
|
|
|
|
|
intended to be used as a capable weather work station for anyone with a serious
|
|
|
|
|
interest in examining weather. This would include members of the sailing
|
|
|
|
|
community, private and sport aviators, farmers, weather buffs and many more.
|
|
|
|
|
XyGrib is the continuation of the zyGrib software package with a new team of
|
|
|
|
|
volunteers.")
|
|
|
|
|
(home-page "https://opengribs.org")
|
|
|
|
|
(license license:gpl3+)))
|
2019-10-04 09:25:16 -04:00
|
|
|
|
|
|
|
|
|
(define-public libspatialindex
|
|
|
|
|
(package
|
|
|
|
|
(name "libspatialindex")
|
2019-12-04 15:16:28 -05:00
|
|
|
|
(version "1.9.3")
|
2019-10-04 09:25:16 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2019-12-04 15:16:28 -05:00
|
|
|
|
(uri (string-append "https://github.com/libspatialindex/libspatialindex/"
|
|
|
|
|
"releases/download/" version "/spatialindex-src-"
|
|
|
|
|
version ".tar.bz2"))
|
2019-10-04 09:25:16 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-12-04 15:16:28 -05:00
|
|
|
|
"02n5vjcyk04w0djidyp21hfbxfpbbara8ifd9nml6158rwqr8lja"))))
|
|
|
|
|
(build-system cmake-build-system)
|
2019-10-04 09:25:16 -04:00
|
|
|
|
(home-page "https://libspatialindex.org")
|
|
|
|
|
(synopsis "Spatial indexing library")
|
|
|
|
|
(description "The purpose of this library is to provide:
|
|
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
|
@item An extensible framework that will support robust spatial indexing
|
|
|
|
|
methods.
|
|
|
|
|
@item Support for sophisticated spatial queries. Range, point location,
|
|
|
|
|
nearest neighbor and k-nearest neighbor as well as parametric queries (defined
|
|
|
|
|
by spatial constraints) should be easy to deploy and run.
|
|
|
|
|
@item Easy to use interfaces for inserting, deleting and updating information.
|
|
|
|
|
@item Wide variety of customization capabilities. Basic index and storage
|
|
|
|
|
characteristics like the page size, node capacity, minimum fan-out, splitting
|
|
|
|
|
algorithm, etc. should be easy to customize.
|
|
|
|
|
@item Index persistence. Internal memory and external memory structures
|
|
|
|
|
should be supported. Clustered and non-clustered indices should be easy to be
|
|
|
|
|
persisted.
|
|
|
|
|
@end itemize
|
|
|
|
|
")
|
|
|
|
|
(license license:expat)))
|
2019-05-03 07:06:03 -04:00
|
|
|
|
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(define-public python-rtree
|
|
|
|
|
(package
|
|
|
|
|
(name "python-rtree")
|
2022-05-19 15:46:05 -04:00
|
|
|
|
(version "1.0.0")
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "Rtree" version))
|
|
|
|
|
(sha256
|
2022-05-19 15:46:05 -04:00
|
|
|
|
(base32 "10lnhf67c9pb0yisxdqmb52dy6lj1za1h9d4p69v0ihk2a138j6h"))))
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'find-libspatialindex
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2022-05-19 15:46:05 -04:00
|
|
|
|
(let ((libspatialindex (assoc-ref inputs "libspatialindex")))
|
|
|
|
|
(substitute* "rtree/finder.py"
|
|
|
|
|
(("find_library\\(\"spatialindex_c\"\\)")
|
|
|
|
|
(string-append "\"" libspatialindex
|
|
|
|
|
"/lib/libspatialindex_c.so\""))))))
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(replace 'check
|
2022-05-19 15:46:05 -04:00
|
|
|
|
(lambda* (#:key outputs tests? #:allow-other-keys)
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(when tests?
|
2022-05-19 15:46:05 -04:00
|
|
|
|
(invoke "pytest")))))))
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-numpy python-pytest python-wheel))
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list libspatialindex))
|
2021-11-14 18:00:52 -05:00
|
|
|
|
(home-page "https://github.com/Toblerity/rtree")
|
|
|
|
|
(synopsis "R-Tree spatial index for Python GIS")
|
|
|
|
|
(description
|
|
|
|
|
"RTree is a Python package with bindings for @code{libspatialindex}.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2019-05-03 07:06:03 -04:00
|
|
|
|
(define-public java-jmapviewer
|
|
|
|
|
(package
|
|
|
|
|
(name "java-jmapviewer")
|
2020-03-03 19:59:38 -05:00
|
|
|
|
(version "2.13")
|
2019-05-03 07:06:03 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://svn.openstreetmap.org/applications/"
|
|
|
|
|
"viewer/jmapviewer/releases/" version
|
|
|
|
|
"/JMapViewer-" version "-Source.zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-03-03 19:59:38 -05:00
|
|
|
|
"0sy6r5fkbb9bclw0is6gwnbzz627m7pjfnsqydxz58pbndakkhrv"))))
|
2019-05-03 07:06:03 -04:00
|
|
|
|
(build-system ant-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list unzip))
|
2019-05-03 07:06:03 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:build-target "pack"
|
|
|
|
|
#:tests? #f; No tests
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'clean
|
|
|
|
|
(lambda* _
|
|
|
|
|
(invoke "ant" "clean")))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((dir (string-append (assoc-ref outputs "out") "/share/java/")))
|
|
|
|
|
(mkdir-p dir)
|
2020-05-14 08:07:53 -04:00
|
|
|
|
(copy-file "JMapViewer.jar" (string-append dir "JMapViewer.jar"))
|
|
|
|
|
#t))))))
|
2019-05-03 07:06:03 -04:00
|
|
|
|
(home-page "https://wiki.openstreetmap.org/wiki/JMapViewer")
|
|
|
|
|
(synopsis "OSM map integration in Java")
|
2020-04-12 17:07:09 -04:00
|
|
|
|
(description "JMapViewer is a Java component which easily
|
|
|
|
|
integrates an OSM map view into your Java application. It is maintained as
|
2019-05-03 07:06:03 -04:00
|
|
|
|
an independent project by the JOSM team.")
|
|
|
|
|
(license license:gpl2)))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
|
2020-07-04 17:54:30 -04:00
|
|
|
|
(define-public java-opening-hours-parser
|
|
|
|
|
(package
|
|
|
|
|
(name "java-opening-hours-parser")
|
2021-08-27 10:23:31 -04:00
|
|
|
|
(version "0.23.0")
|
2020-07-04 17:54:30 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/simonpoole/OpeningHoursParser")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-08-27 10:23:31 -04:00
|
|
|
|
"0yhbd2ix6h506aljh0jkrnp28m4xcqdcdpnqm30fn08kawdgxgsh"))))
|
2020-07-04 17:54:30 -04:00
|
|
|
|
(build-system ant-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:jar-name "java-opening-hours-parser.jar"
|
|
|
|
|
#:source-dir "src/main/java"
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'copy-resources
|
|
|
|
|
(lambda _
|
|
|
|
|
(copy-recursively "src/main/resources" "build/classes")
|
|
|
|
|
#t))
|
|
|
|
|
(add-before 'build 'generate-parser
|
|
|
|
|
(lambda* _
|
|
|
|
|
(let* ((dir "src/main/java/ch/poole/openinghoursparser")
|
|
|
|
|
(file (string-append dir "/OpeningHoursParser.jj")))
|
|
|
|
|
(invoke "javacc" "-DEBUG_PARSER=false"
|
|
|
|
|
"-DEBUG_TOKEN_MANAGER=false" "-JDK_VERSION=1.8"
|
|
|
|
|
"-GRAMMAR_ENCODING=UTF-8"
|
|
|
|
|
(string-append "-OUTPUT_DIRECTORY=" dir)
|
|
|
|
|
file))
|
|
|
|
|
#t)))))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list java-jetbrains-annotations))
|
2020-07-04 17:54:30 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list javacc java-junit java-hamcrest-core))
|
2020-07-04 17:54:30 -04:00
|
|
|
|
(home-page "https://github.com/simonpoole/OpeningHoursParser")
|
|
|
|
|
(synopsis "Java parser for the OpenStreetMap opening hour format")
|
|
|
|
|
(description "This is a very simplistic parser for string values according
|
|
|
|
|
to the OSM opening hours specification.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(define-public josm
|
|
|
|
|
(package
|
|
|
|
|
(name "josm")
|
2022-01-11 08:42:56 -05:00
|
|
|
|
(version "18360")
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method svn-fetch)
|
|
|
|
|
(uri (svn-reference
|
|
|
|
|
(url "https://josm.openstreetmap.de/svn/trunk")
|
|
|
|
|
(revision (string->number version))
|
|
|
|
|
(recursive? #f)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-01-11 08:42:56 -05:00
|
|
|
|
"0j7fhzh6hs2b5r1a3d1xpy6f5r6q1kh79bck28raang8ldd754c6"))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
2020-09-13 04:31:15 -04:00
|
|
|
|
(for-each delete-file (find-files "." ".*.jar$"))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
#t))))
|
|
|
|
|
(build-system ant-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list javacc))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list java-commons-jcs
|
|
|
|
|
java-commons-compress
|
|
|
|
|
java-jmapviewer
|
|
|
|
|
java-jsonp-api
|
|
|
|
|
java-jsonp-impl ; runtime dependency
|
|
|
|
|
java-jsr305
|
|
|
|
|
java-metadata-extractor
|
|
|
|
|
java-opening-hours-parser
|
|
|
|
|
java-openjfx-media
|
|
|
|
|
java-signpost-core
|
|
|
|
|
java-svg-salamander))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f
|
|
|
|
|
#:jar-name "josm.jar"
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'rm-build.xml
|
|
|
|
|
(lambda* _
|
|
|
|
|
(delete-file "build.xml")
|
|
|
|
|
#t))
|
|
|
|
|
(add-before 'build 'fix-revision
|
|
|
|
|
(lambda* _
|
|
|
|
|
(with-output-to-file "REVISION.XML"
|
|
|
|
|
(lambda _
|
|
|
|
|
(display
|
|
|
|
|
(string-append "<info><entry><commit revision=\"" ,version "\">"
|
|
|
|
|
"<date>1970-01-01 00:00:00 +0000</date>"
|
|
|
|
|
"</commit></entry></info>"))))
|
|
|
|
|
#t))
|
2020-07-04 19:06:32 -04:00
|
|
|
|
(add-before 'build 'fix-jcs
|
|
|
|
|
(lambda _
|
|
|
|
|
;; This version of JOSM uses an unreleased version of commons-jcs,
|
|
|
|
|
;; which has renamed its classes to another namespace. Rename them
|
|
|
|
|
;; back so they can be used with our version of jcs.
|
|
|
|
|
(substitute* (find-files "." ".*.java$")
|
2021-08-27 10:23:40 -04:00
|
|
|
|
(("jcs3") "jcs")
|
|
|
|
|
(("ICache.NAME_COMPONENT_DELIMITER") "\":\""))
|
2020-07-04 19:06:32 -04:00
|
|
|
|
#t))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(add-before 'build 'fix-classpath
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(setenv "CLASSPATH"
|
|
|
|
|
(string-join
|
|
|
|
|
(filter
|
|
|
|
|
(lambda (s)
|
|
|
|
|
(let ((source (assoc-ref inputs "source")))
|
2020-09-13 04:31:15 -04:00
|
|
|
|
(not (equal? (substring s 0 (string-length source))
|
|
|
|
|
source))))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(string-split (getenv "CLASSPATH") #\:))
|
|
|
|
|
":"))
|
|
|
|
|
#t))
|
|
|
|
|
(add-before 'build 'generate-parser
|
|
|
|
|
(lambda* _
|
|
|
|
|
(let* ((dir "src/org/openstreetmap/josm/gui/mappaint/mapcss")
|
|
|
|
|
(out (string-append dir "/parsergen"))
|
|
|
|
|
(file (string-append dir "/MapCSSParser.jj")))
|
|
|
|
|
(mkdir-p "src/org/openstreetmap/josm/gui/mappaint/mapcss/parsergen")
|
|
|
|
|
(invoke "javacc" "-DEBUG_PARSER=false"
|
|
|
|
|
"-DEBUG_TOKEN_MANAGER=false" "-JDK_VERSION=1.8"
|
|
|
|
|
"-GRAMMAR_ENCODING=UTF-8"
|
|
|
|
|
(string-append "-OUTPUT_DIRECTORY=" out)
|
|
|
|
|
file))
|
|
|
|
|
#t))
|
|
|
|
|
(add-after 'build 'generate-epsg
|
|
|
|
|
(lambda _
|
|
|
|
|
(system* "javac" "scripts/BuildProjectionDefinitions.java"
|
|
|
|
|
"-cp" "build/classes")
|
|
|
|
|
(mkdir-p "data/projection")
|
|
|
|
|
(with-output-to-file "data/projection/custom-epsg"
|
|
|
|
|
(lambda _ (display "")))
|
|
|
|
|
(invoke "java" "-cp" "build/classes:scripts:."
|
|
|
|
|
"BuildProjectionDefinitions" ".")
|
|
|
|
|
#t))
|
2020-07-04 19:06:32 -04:00
|
|
|
|
(add-after 'generate-epsg 'copy-resources
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(lambda _
|
2020-07-04 19:06:32 -04:00
|
|
|
|
(copy-recursively "resources" "build/classes")
|
2019-05-03 08:55:51 -04:00
|
|
|
|
#t))
|
|
|
|
|
(add-before 'install 'regenerate-jar
|
|
|
|
|
(lambda _
|
|
|
|
|
;; We need to regenerate the jar file to add data.
|
|
|
|
|
(delete-file "build/jar/josm.jar")
|
|
|
|
|
(invoke "jar" "-cf" "build/jar/josm.jar" "-C"
|
|
|
|
|
"build/classes" ".")
|
|
|
|
|
#t))
|
|
|
|
|
(add-before 'build 'copy-revision
|
|
|
|
|
(lambda _
|
|
|
|
|
(mkdir-p "build/classes")
|
|
|
|
|
(with-output-to-file "build/classes/REVISION"
|
|
|
|
|
(lambda _
|
|
|
|
|
(display
|
|
|
|
|
(string-append "Revision: " ,version "\n"
|
|
|
|
|
"Is-Local-Build: true\n"
|
|
|
|
|
"Build-Date: 1970-01-01 00:00:00 +0000\n"))))
|
|
|
|
|
#t))
|
2020-09-13 04:31:15 -04:00
|
|
|
|
(add-after 'install 'install-share-directories
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(share-directories '("applications" "icons" "man" "menu"
|
2021-09-21 06:24:14 -04:00
|
|
|
|
"metainfo" "mime" "pixmaps"))
|
|
|
|
|
(desktop "org.openstreetmap.josm.desktop"))
|
2020-09-13 04:31:15 -04:00
|
|
|
|
(for-each (lambda (directory)
|
|
|
|
|
(copy-recursively (string-append
|
|
|
|
|
"native/linux/tested/usr/share/"
|
|
|
|
|
directory)
|
|
|
|
|
(string-append
|
|
|
|
|
out "/share/" directory)))
|
2021-09-21 06:24:14 -04:00
|
|
|
|
share-directories)
|
|
|
|
|
(substitute* (string-append out "/share/applications/" desktop)
|
|
|
|
|
(("josm-MainApplication") "josm-gui-MainApplication")))
|
2020-09-13 04:31:15 -04:00
|
|
|
|
#t))
|
2019-05-03 08:55:51 -04:00
|
|
|
|
(add-after 'install 'install-bin
|
|
|
|
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
|
(mkdir-p bin)
|
|
|
|
|
(with-output-to-file (string-append bin "/josm")
|
|
|
|
|
(lambda _
|
|
|
|
|
(display
|
|
|
|
|
(string-append "#!/bin/sh\n"
|
|
|
|
|
(assoc-ref inputs "jdk") "/bin/java"
|
|
|
|
|
" -cp " out "/share/java/josm.jar:"
|
|
|
|
|
(getenv "CLASSPATH")
|
|
|
|
|
" org.openstreetmap.josm.gui.MainApplication"))))
|
|
|
|
|
(chmod (string-append bin "/josm") #o755))
|
|
|
|
|
#t)))))
|
|
|
|
|
(home-page "https://josm.openstreetmap.de")
|
|
|
|
|
(synopsis "OSM editor")
|
|
|
|
|
(description "JOSM is an extensible editor for OpenStreetMap (OSM). It
|
|
|
|
|
supports loading GPX tracks, background imagery and OSM data from local
|
2020-04-12 18:28:17 -04:00
|
|
|
|
sources as well as from online sources and allows editing the OSM data (nodes,
|
2019-05-03 08:55:51 -04:00
|
|
|
|
ways, and relations) and their metadata tags.")
|
|
|
|
|
(license license:gpl2+)))
|
2019-11-17 11:11:28 -05:00
|
|
|
|
|
|
|
|
|
(define-public libmaxminddb
|
|
|
|
|
(package
|
|
|
|
|
(name "libmaxminddb")
|
2022-08-16 09:49:20 -04:00
|
|
|
|
(version "1.6.0")
|
2019-11-17 11:11:28 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/maxmind/libmaxminddb"
|
|
|
|
|
"/releases/download/" version "/"
|
|
|
|
|
"/libmaxminddb-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2022-08-16 09:49:20 -04:00
|
|
|
|
(base32 "0rw2z7rx8jzgdcgqlmc4wqrsjmiwd8vm5wvvrldy472rghcaq83n"))))
|
2019-11-17 11:11:28 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2020-08-11 10:24:03 -04:00
|
|
|
|
`(#:make-flags
|
|
|
|
|
(list ,(string-append "CC=" (cc-for-target)))))
|
2019-11-17 11:11:28 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list perl))
|
2019-11-17 11:11:28 -05:00
|
|
|
|
(home-page "https://maxmind.github.io/libmaxminddb/")
|
|
|
|
|
(synopsis "C library for the MaxMind DB file format")
|
|
|
|
|
(description "The libmaxminddb library provides a C library for reading
|
|
|
|
|
MaxMind DB files, including the GeoIP2 databases from MaxMind. The MaxMind DB
|
|
|
|
|
format is a custom, but open, binary format designed to facilitate fast
|
|
|
|
|
lookups of IP addresses while allowing flexibility in the type of data
|
|
|
|
|
associated with an address.")
|
|
|
|
|
(license license:asl2.0)))
|
2019-11-17 13:37:03 -05:00
|
|
|
|
|
|
|
|
|
(define-public python-maxminddb
|
|
|
|
|
(package
|
|
|
|
|
(name "python-maxminddb")
|
2022-08-16 09:52:45 -04:00
|
|
|
|
(version "2.2.0")
|
2019-11-17 13:37:03 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "maxminddb" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-08-16 09:52:45 -04:00
|
|
|
|
"1rc4a403r3b4vhmhb03gidd0fmsbvfpbf3qfcw25h4db9zn0fxz3"))))
|
2019-11-17 13:37:03 -05:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;; Tests require a copy of the maxmind database
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list libmaxminddb))
|
2020-01-17 16:22:15 -05:00
|
|
|
|
(home-page "https://www.maxmind.com/")
|
2019-11-17 13:37:03 -05:00
|
|
|
|
(synopsis "Reader for the MaxMind DB format")
|
|
|
|
|
(description "MaxMind DB is a binary file format that stores data indexed
|
|
|
|
|
by IP address subnets (IPv4 or IPv6). This is a Python module for reading
|
|
|
|
|
MaxMind DB files.")
|
|
|
|
|
(license license:asl2.0)))
|
2019-11-17 11:23:34 -05:00
|
|
|
|
|
|
|
|
|
(define-public python-geoip2
|
|
|
|
|
(package
|
|
|
|
|
(name "python-geoip2")
|
|
|
|
|
(version "2.9.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "geoip2" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1w7cay5q6zawjzivqbwz5cqx1qbdjw6kbriccb7l46p7b39fkzzp"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ;; Tests require a copy of the maxmind database
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-maxminddb python-requests))
|
2020-01-17 16:22:15 -05:00
|
|
|
|
(home-page "https://www.maxmind.com/")
|
2019-11-17 11:23:34 -05:00
|
|
|
|
(synopsis "MaxMind GeoIP2 API")
|
|
|
|
|
(description "Provides an API for the GeoIP2 web services and databases.
|
|
|
|
|
The API also works with MaxMind’s free GeoLite2 databases.")
|
|
|
|
|
(license license:asl2.0)))
|
2019-08-31 05:43:45 -04:00
|
|
|
|
|
|
|
|
|
(define-public routino
|
|
|
|
|
(package
|
|
|
|
|
(name "routino")
|
2021-01-01 11:15:20 -05:00
|
|
|
|
(version "3.3.3")
|
2019-08-31 05:43:45 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://www.routino.org/download/routino-"
|
|
|
|
|
version ".tgz"))
|
|
|
|
|
(sha256
|
2021-01-01 11:15:20 -05:00
|
|
|
|
(base32 "1xa7l2bjn832nk6bc7b481nv8hd2gj41jwhg0d2qy10lqdvjpn5b"))))
|
2019-08-31 05:43:45 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list perl))
|
2019-08-31 05:43:45 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list bzip2 xz zlib))
|
2019-08-31 05:43:45 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:test-target "test"
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(substitute* "Makefile.conf"
|
|
|
|
|
(("prefix=/usr/local")
|
|
|
|
|
(string-append "prefix=" (assoc-ref outputs "out")))
|
|
|
|
|
(("LDFLAGS_LDSO=-Wl,-R\\.")
|
|
|
|
|
"LDFLAGS_LDSO=-Wl,-R$(libdir)")
|
|
|
|
|
(("#CFLAGS\\+=-DUSE_XZ")
|
|
|
|
|
"CFLAGS+=-DUSE_XZ")
|
|
|
|
|
(("#LDFLAGS\\+=-llzma")
|
|
|
|
|
"LDFLAGS+=-llzma"))
|
|
|
|
|
#t)))))
|
|
|
|
|
(synopsis "Routing application for OpenStreetMap data")
|
|
|
|
|
(description
|
|
|
|
|
"Routino is an application for finding a route between two points
|
|
|
|
|
using the dataset of topographical information collected by
|
|
|
|
|
@url{https://www.OpenStreetMap.org}.")
|
|
|
|
|
(home-page "https://www.routino.org/")
|
|
|
|
|
(license license:agpl3+)))
|
2020-01-13 09:38:33 -05:00
|
|
|
|
|
|
|
|
|
(define-public qmapshack
|
|
|
|
|
(package
|
|
|
|
|
(name "qmapshack")
|
2021-12-27 10:00:12 -05:00
|
|
|
|
(version "1.16.1")
|
2020-01-13 09:38:33 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/Maproom/qmapshack")
|
2020-01-13 09:38:33 -05:00
|
|
|
|
(commit (string-append "V_" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2021-12-27 10:00:12 -05:00
|
|
|
|
(base32 "184fqmsfzr3b333ssizjk6gvv7mncmygq8dj5r7rsvs5md26z2ys"))))
|
2020-01-13 09:38:33 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2022-07-19 16:52:05 -04:00
|
|
|
|
(list pkg-config qttools-5))
|
2020-01-13 09:38:33 -05:00
|
|
|
|
(inputs
|
2022-09-11 09:44:01 -04:00
|
|
|
|
(list curl
|
|
|
|
|
gdal
|
2021-12-13 11:18:24 -05:00
|
|
|
|
libjpeg-turbo
|
|
|
|
|
proj
|
|
|
|
|
qtbase-5
|
2022-07-17 21:03:18 -04:00
|
|
|
|
qtdeclarative-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtlocation
|
2022-07-18 00:02:58 -04:00
|
|
|
|
qtwebchannel-5
|
2022-07-18 07:57:16 -04:00
|
|
|
|
qtwebengine-5
|
2021-12-27 10:00:12 -05:00
|
|
|
|
quazip
|
2021-12-13 11:18:24 -05:00
|
|
|
|
routino
|
|
|
|
|
sqlite ; See wrap phase
|
|
|
|
|
zlib))
|
2020-01-13 09:38:33 -05:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-cmake-modules
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
|
(("find_package\\(Qt5PrintSupport REQUIRED\\)" all)
|
|
|
|
|
(string-append all "\nfind_package(Qt5Positioning REQUIRED)")))
|
|
|
|
|
(substitute* "cmake/Modules/FindROUTINO.cmake"
|
|
|
|
|
(("/usr/local")
|
2021-12-27 10:00:12 -05:00
|
|
|
|
(assoc-ref inputs "routino"))))))))
|
2020-01-13 09:38:33 -05:00
|
|
|
|
(synopsis "GPS mapping application")
|
|
|
|
|
(description
|
|
|
|
|
"QMapShack can be used to plan your next outdoor trip or to visualize and
|
|
|
|
|
archive all the GPS recordings of your past trips. It is the successor of the
|
|
|
|
|
QLandkarte GT application.")
|
|
|
|
|
(home-page "https://github.com/Maproom/qmapshack/wiki")
|
|
|
|
|
(license license:gpl3+)))
|
2020-03-09 09:44:10 -04:00
|
|
|
|
|
|
|
|
|
(define-public readosm
|
|
|
|
|
(package
|
|
|
|
|
(name "readosm")
|
2020-08-11 11:55:48 -04:00
|
|
|
|
(version "1.1.0a")
|
2020-03-09 09:44:10 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
|
|
|
|
"readosm-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2020-12-29 16:37:48 -05:00
|
|
|
|
(base32 "0igif2bxf4dr82glxz9gyx5mmni0r2dsnx9p9k6pxv3c4lfhaz6v"))))
|
2020-03-09 09:44:10 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list expat zlib))
|
2020-03-09 09:44:10 -04:00
|
|
|
|
(synopsis "Data extractor for OpenStreetMap files")
|
|
|
|
|
(description
|
|
|
|
|
"ReadOSM is a library to extract valid data from within an OpenStreetMap
|
|
|
|
|
input file (in @code{.osm} or @code{.osm.pbf} format).")
|
|
|
|
|
(home-page "https://www.gaia-gis.it/fossil/readosm/index")
|
|
|
|
|
(license (list license:gpl2+
|
|
|
|
|
license:lgpl2.1+
|
|
|
|
|
license:mpl1.1))))
|
2020-03-09 09:50:21 -04:00
|
|
|
|
|
2021-01-27 14:02:22 -05:00
|
|
|
|
(define-public shapelib
|
|
|
|
|
(package
|
|
|
|
|
(name "shapelib")
|
|
|
|
|
(version "1.5.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/OSGeo/shapelib")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1lzch0jf6yqhw391phhafzw4ghmiz98zkf698h4fmq109fa2vhqd"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list autoconf automake libtool))
|
2021-01-27 14:02:22 -05:00
|
|
|
|
(home-page "http://shapelib.maptools.org/")
|
|
|
|
|
(synopsis "Provides C library to write and update ESRI Shapefiles")
|
|
|
|
|
(description
|
|
|
|
|
"The Shapefile C Library provides the ability to write simple C programs
|
|
|
|
|
for reading, writing and updating (to a limited extent) ESRI Shapefiles, and the
|
|
|
|
|
associated attribute file (@file{.dbf}).")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2020-03-09 09:50:21 -04:00
|
|
|
|
(define-public spatialite-tools
|
|
|
|
|
(package
|
|
|
|
|
(name "spatialite-tools")
|
2021-02-27 05:25:09 -05:00
|
|
|
|
(version "5.0.1")
|
2020-03-09 09:50:21 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
|
|
|
|
"spatialite-tools-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2021-02-27 05:25:09 -05:00
|
|
|
|
(base32 "070p6pg541wvwb28wkn7k0z1qdyirik2qc2jpj4pf0vzx02w414n"))))
|
2020-03-09 09:50:21 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2020-03-09 09:50:21 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list expat
|
|
|
|
|
freexl
|
|
|
|
|
geos
|
|
|
|
|
librttopo
|
|
|
|
|
libspatialite
|
|
|
|
|
libxml2
|
|
|
|
|
minizip
|
|
|
|
|
proj
|
|
|
|
|
readosm
|
|
|
|
|
sqlite))
|
2020-03-09 09:50:21 -04:00
|
|
|
|
(synopsis "Collection of command line tools for SpatiaLite")
|
|
|
|
|
(description
|
|
|
|
|
"@code{spatialite-tools} is a collection of Command Line Interface (CLI)
|
|
|
|
|
tools supporting SpatiaLite.")
|
|
|
|
|
(home-page "https://www.gaia-gis.it/fossil/spatialite-tools/index")
|
|
|
|
|
(license license:gpl3+)))
|
2020-03-12 05:05:28 -04:00
|
|
|
|
|
|
|
|
|
(define-public virtualpg
|
|
|
|
|
(package
|
|
|
|
|
(name "virtualpg")
|
2021-03-05 04:23:11 -05:00
|
|
|
|
(version "2.0.1")
|
2020-03-12 05:05:28 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
|
|
|
|
"virtualpg-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2021-03-05 04:23:11 -05:00
|
|
|
|
(base32 "12z0l7368r4116ljzg7nljy5hf425r11vxc540w79wlzikmynamy"))))
|
2020-03-12 05:05:28 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list postgresql sqlite))
|
2020-03-12 05:05:28 -04:00
|
|
|
|
(synopsis "Allow SQLite/SpatiaLite to access PostgreSQL/PostGIS tables")
|
|
|
|
|
(description
|
|
|
|
|
"VirtualPG is a dynamic extension for the SQLite DBMS. It implements
|
|
|
|
|
the VirtualPostgres driver, allowing to directly exchange data between SQLite
|
|
|
|
|
and PostgreSQL; if SpatiaLite is available even PostGIS geometries can be
|
|
|
|
|
exchanged form one Spatial DBMS and the other.")
|
|
|
|
|
(home-page "https://www.gaia-gis.it/fossil/virtualpg/index")
|
|
|
|
|
(license (list license:gpl2+
|
|
|
|
|
license:lgpl2.1+
|
|
|
|
|
license:mpl1.1))))
|
2020-03-18 09:57:27 -04:00
|
|
|
|
|
|
|
|
|
(define-public opencpn
|
|
|
|
|
(package
|
|
|
|
|
(name "opencpn")
|
2022-03-16 10:57:34 -04:00
|
|
|
|
(version "5.6.0")
|
2020-03-18 09:57:27 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/OpenCPN/OpenCPN")
|
2022-03-16 10:57:34 -04:00
|
|
|
|
(commit (string-append "Release_" version))))
|
2020-03-18 09:57:27 -04:00
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2022-03-16 10:57:34 -04:00
|
|
|
|
(base32 "0g5x45wv3djfjmigk6kgs0i63yp8rs1fbmm4pb15wb3z6dml624y"))))
|
2020-03-18 09:57:27 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("gettext" ,gettext-minimal)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
2022-03-16 10:57:34 -04:00
|
|
|
|
(list alsa-utils
|
|
|
|
|
bzip2
|
2021-12-13 11:18:24 -05:00
|
|
|
|
cairo
|
|
|
|
|
curl
|
2022-03-16 10:57:34 -04:00
|
|
|
|
eudev
|
2021-12-13 11:18:24 -05:00
|
|
|
|
glu
|
|
|
|
|
gtk+
|
2022-03-16 10:57:34 -04:00
|
|
|
|
jasper
|
2021-12-13 11:18:24 -05:00
|
|
|
|
libarchive
|
|
|
|
|
libelf
|
|
|
|
|
libexif
|
2022-03-16 10:57:34 -04:00
|
|
|
|
libjpeg-turbo
|
2021-12-13 11:18:24 -05:00
|
|
|
|
libsndfile
|
2022-03-16 10:57:34 -04:00
|
|
|
|
libusb
|
2021-12-13 11:18:24 -05:00
|
|
|
|
lz4
|
|
|
|
|
mesa
|
|
|
|
|
pango
|
|
|
|
|
portaudio
|
|
|
|
|
sqlite
|
|
|
|
|
tinyxml
|
|
|
|
|
wxsvg
|
|
|
|
|
wxwidgets
|
|
|
|
|
xz
|
|
|
|
|
zlib))
|
2020-03-18 09:57:27 -04:00
|
|
|
|
(arguments
|
2021-11-19 15:10:12 -05:00
|
|
|
|
`(#:configure-flags '("-DOCPN_USE_BUNDLED_LIBS=OFF"
|
|
|
|
|
"-DOCPN_ENABLE_PORTAUDIO=ON"
|
|
|
|
|
"-DOCPN_ENABLE_SNDFILE=ON"
|
|
|
|
|
"-DOCPN_BUNDLE_TCDATA=ON"
|
|
|
|
|
"-DOCPN_BUNDLE_GSHHS=ON")
|
2020-03-18 09:57:27 -04:00
|
|
|
|
#:tests? #f ; No tests defined
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-build
|
2021-11-19 15:10:12 -05:00
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2020-03-18 09:57:27 -04:00
|
|
|
|
(substitute* "CMakeLists.txt"
|
2021-11-19 15:10:12 -05:00
|
|
|
|
(("wx-32.c; cc")
|
|
|
|
|
"wx-32.c; gcc")
|
|
|
|
|
(("\"/bin/sh\" \"-c\"")
|
|
|
|
|
(string-append "\"" (which "bash") "\" \"-c\""))
|
|
|
|
|
(("include\\(TargetSetup\\)")
|
|
|
|
|
"set(PKG_TARGET \"guix\")\nset(PKG_TARGET_VERSION 1)")))))))
|
2020-03-18 09:57:27 -04:00
|
|
|
|
(synopsis "Chart plotter and marine GPS navigation software")
|
|
|
|
|
(description
|
|
|
|
|
"OpenCPN is a chart plotter and marine navigation software designed to be
|
|
|
|
|
used at the helm station of your boat while underway. Chart a course and
|
|
|
|
|
track your position right from your laptop.")
|
|
|
|
|
(home-page "https://opencpn.org/")
|
|
|
|
|
(license (list license:asl2.0
|
|
|
|
|
license:cc0
|
|
|
|
|
license:bsd-2
|
|
|
|
|
license:bsd-3
|
|
|
|
|
license:expat
|
|
|
|
|
license:gpl3+
|
|
|
|
|
license:lgpl2.1+
|
|
|
|
|
license:lgpl3+
|
|
|
|
|
license:sgifreeb2.0
|
|
|
|
|
license:zlib))))
|
2020-03-21 19:03:41 -04:00
|
|
|
|
|
2021-12-15 10:09:28 -05:00
|
|
|
|
(define-public openorienteering-mapper
|
|
|
|
|
(package
|
|
|
|
|
(name "openorienteering-mapper")
|
|
|
|
|
(version "0.9.5")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/OpenOrienteering/mapper")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"11b578h8f3q9yvphbjhqmy2w1cfc9skslzawypqmc3k44v24aj0s"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f
|
|
|
|
|
#:configure-flags
|
|
|
|
|
(list
|
|
|
|
|
"-DLICENSING_PROVIDER:BOOL=OFF"
|
|
|
|
|
"-DMapper_MANUAL_QTHELP:BOOL=OFF")))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("clipper" ,clipper)
|
|
|
|
|
("cups" ,cups)
|
2022-09-08 16:14:36 -04:00
|
|
|
|
("curl" ,curl)
|
2021-12-15 10:09:28 -05:00
|
|
|
|
("gdal" ,gdal)
|
|
|
|
|
("proj" ,proj)
|
|
|
|
|
("qtbase" ,qtbase-5)
|
|
|
|
|
("qtimageformats" ,qtimageformats)
|
|
|
|
|
("qtlocation" ,qtlocation)
|
|
|
|
|
("qtsensors" ,qtsensors)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("doxygen" ,doxygen)
|
2022-07-19 16:52:05 -04:00
|
|
|
|
("qttools-5" ,qttools-5)))
|
2021-12-15 10:09:28 -05:00
|
|
|
|
(home-page "https://www.openorienteering.org/apps/mapper/")
|
|
|
|
|
(synopsis "OpenOrienteering Mapper (OOM)")
|
|
|
|
|
(description
|
|
|
|
|
"OpenOrienteering Mapper is a software for creating maps for the
|
|
|
|
|
orienteering sport.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2020-03-21 19:03:41 -04:00
|
|
|
|
(define-public grass
|
2022-07-06 14:14:06 -04:00
|
|
|
|
(let* ((version "7.8.7")
|
2020-03-21 19:03:41 -04:00
|
|
|
|
(majorminor (string-join (list-head (string-split version #\.) 2) ""))
|
|
|
|
|
(grassxx (string-append "grass" majorminor)))
|
|
|
|
|
(package
|
|
|
|
|
(name "grass")
|
|
|
|
|
(version version)
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://grass.osgeo.org/" grassxx
|
|
|
|
|
"/source/grass-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2022-07-06 14:14:06 -04:00
|
|
|
|
(base32 "0sbz0ba9p963phvd0gmvfqq1fg4ixpipzcjbf20ys86qavjppzsg"))))
|
2020-03-21 19:03:41 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
gnu: Fix package references.
* gnu/packages/algebra.scm (iml)[inputs]: Correctly refer to package
inputs.
* gnu/packages/astronomy.scm (xplanet),
* gnu/packages/audio.scm (redkite, libaudec, lv2lint, lv2toweb),
* gnu/packages/bioconductor.scm (r-cummerbund),
* gnu/packages/chicken.scm (chicken),
* gnu/packages/conky.scm (conky),
* gnu/packages/cran.scm (r-latex2exp),
* gnu/packages/crates-io.scm (rust-rgb),
* gnu/packages/databases.scm (mariadb),
* gnu/packages/diffoscope.scm (reprotest),
* gnu/packages/file-systems.scm (glusterfs),
* gnu/packages/finance.scm (electron-cash),
* gnu/packages/games.scm (rinutils, ksudoku, kdiamond, kigo),
* gnu/packages/geo.scm (grass),
* gnu/packages/gnome.scm (libmediaart, gnome-contacts, geoclue),
* gnu/packages/gnucash.scm (aqbanking),
* gnu/packages/image.scm (mtpaint),
* gnu/packages/kde-internet.scm (kopete, ktorrent),
* gnu/packages/kde-utils.scm (kmousetool, kmouth, kronometer),
* gnu/packages/linphone.scm (liblinphone),
* gnu/packages/maths.scm (ppl),
* gnu/packages/mercury.scm (mercury-minimal),
* gnu/packages/music.scm (bjumblr, bschaffl, lsp-plugins,
spectacle-analyzer, helm, tap-lv2, wolf-shaper, shiru-lv2),
* gnu/packages/networking.scm (restinio),
* gnu/packages/prolog.scm (swi-prolog),
* gnu/packages/python-web.scm (gunicorn),
* gnu/packages/python-xyz.scm (python-docusign-esign),
* gnu/packages/ruby.scm (ruby-cucumber, ruby_version, ruby-addressable),
* gnu/packages/sagemath.scm (python-cypari2),
* gnu/packages/skarnet.scm (s6-linux-init),
* gnu/packages/vpn.scm (sshuttle),
* gnu/packages/web.scm (libcyaml),
* gnu/packages/xdisorg.scm (kbdd),
* gnu/packages/xorg.scm (xpra): Same.
2020-09-30 01:57:27 -04:00
|
|
|
|
`(("bzip2" ,bzip2)
|
2020-03-21 19:03:41 -04:00
|
|
|
|
("cairo" ,cairo)
|
|
|
|
|
("fftw" ,fftw)
|
|
|
|
|
("freetype" ,freetype)
|
|
|
|
|
("gdal" ,gdal)
|
|
|
|
|
("geos" ,geos)
|
|
|
|
|
("glu" ,glu)
|
|
|
|
|
("lapack" ,lapack)
|
|
|
|
|
("libpng" ,libpng)
|
|
|
|
|
("libtiff" ,libtiff)
|
|
|
|
|
("mesa" ,mesa)
|
|
|
|
|
("mariadb-dev" ,mariadb "dev")
|
|
|
|
|
("mariadb-lib" ,mariadb "lib")
|
|
|
|
|
("netcdf" ,netcdf)
|
|
|
|
|
("openblas" ,openblas)
|
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("postgresql" ,postgresql)
|
2021-10-02 08:55:51 -04:00
|
|
|
|
("proj" ,proj)
|
2020-03-21 19:03:41 -04:00
|
|
|
|
("python" ,python)
|
|
|
|
|
("python-dateutil" ,python-dateutil)
|
|
|
|
|
("python-numpy" ,python-numpy)
|
|
|
|
|
("python-wxpython" ,python-wxpython)
|
|
|
|
|
("readline" ,readline)
|
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
|
("wxwidgets" ,wxwidgets)
|
|
|
|
|
("zlib" ,zlib)
|
|
|
|
|
("zstd" ,zstd "lib")))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("bash" ,bash-minimal)
|
|
|
|
|
("bison" ,bison)
|
|
|
|
|
("flex" ,flex)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; No tests
|
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
|
((guix build python-build-system) #:prefix python:)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
|
|
|
(guix build python-build-system))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
2021-07-16 10:50:56 -04:00
|
|
|
|
(let ((shell (search-input-file inputs "/bin/bash")))
|
2020-03-21 19:03:41 -04:00
|
|
|
|
(setenv "SHELL" shell)
|
|
|
|
|
(setenv "CONFIG_SHELL" shell)
|
|
|
|
|
(setenv "LDFLAGS" (string-append "-Wl,-rpath -Wl,"
|
|
|
|
|
(assoc-ref outputs "out")
|
|
|
|
|
"/" ,grassxx "/lib")))
|
|
|
|
|
(invoke "./configure"
|
|
|
|
|
(string-append "--prefix="
|
|
|
|
|
(assoc-ref outputs "out"))
|
|
|
|
|
"--with-blas"
|
|
|
|
|
"--with-bzlib"
|
|
|
|
|
(string-append "--with-freetype-includes="
|
|
|
|
|
(assoc-ref inputs "freetype")
|
|
|
|
|
"/include/freetype2")
|
|
|
|
|
(string-append "--with-freetype-libs="
|
|
|
|
|
(assoc-ref inputs "freetype")
|
|
|
|
|
"/lib")
|
|
|
|
|
"--with-geos"
|
|
|
|
|
"--with-lapack"
|
|
|
|
|
"--with-mysql"
|
|
|
|
|
(string-append "--with-mysql-includes="
|
|
|
|
|
(assoc-ref inputs "mariadb-dev")
|
|
|
|
|
"/include/mysql")
|
|
|
|
|
(string-append "--with-mysql-libs="
|
|
|
|
|
(assoc-ref inputs "mariadb-lib")
|
|
|
|
|
"/lib")
|
|
|
|
|
"--with-netcdf"
|
|
|
|
|
"--with-postgres"
|
|
|
|
|
(string-append "--with-proj-share="
|
2021-10-02 08:55:51 -04:00
|
|
|
|
(assoc-ref inputs "proj")
|
2020-03-21 19:03:41 -04:00
|
|
|
|
"/share/proj")
|
|
|
|
|
"--with-pthread"
|
|
|
|
|
"--with-readline"
|
|
|
|
|
"--with-sqlite"
|
|
|
|
|
"--with-wxwidgets")))
|
|
|
|
|
(add-after 'install 'install-links
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
;; Put links for includes and libraries in the standard places.
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(dir (string-append out "/" ,grassxx)))
|
|
|
|
|
(symlink (string-append dir "/include")
|
|
|
|
|
(string-append out "/include"))
|
|
|
|
|
(symlink (string-append dir "/lib")
|
|
|
|
|
(string-append out "/lib")))
|
|
|
|
|
#t))
|
2020-10-16 15:07:06 -04:00
|
|
|
|
(add-after 'install-links 'python:wrap
|
|
|
|
|
(assoc-ref python:%standard-phases 'wrap))
|
|
|
|
|
(add-after 'python:wrap 'wrap-with-python-interpreter
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(wrap-program (string-append out "/bin/" ,grassxx)
|
|
|
|
|
`("GRASS_PYTHON" = (,(which "python3"))))
|
|
|
|
|
#t))))))
|
2020-03-21 19:03:41 -04:00
|
|
|
|
(synopsis "GRASS Geographic Information System")
|
|
|
|
|
(description
|
|
|
|
|
"GRASS (Geographic Resources Analysis Support System), is a Geographic
|
|
|
|
|
Information System (GIS) software suite used for geospatial data management and
|
|
|
|
|
analysis, image processing, graphics and maps production, spatial modeling, and
|
|
|
|
|
visualization.")
|
|
|
|
|
(home-page "https://grass.osgeo.org/")
|
|
|
|
|
(license license:gpl2+))))
|
2020-03-22 06:33:00 -04:00
|
|
|
|
|
|
|
|
|
(define-public saga
|
|
|
|
|
(package
|
|
|
|
|
(name "saga")
|
2022-07-06 14:14:08 -04:00
|
|
|
|
(version "8.2.1")
|
2020-03-22 06:33:00 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://sourceforge/saga-gis/SAGA%20-%20"
|
|
|
|
|
(version-major version) "/SAGA%20-%20" version
|
|
|
|
|
"/saga-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2022-07-06 14:14:08 -04:00
|
|
|
|
(base32 "008izjs6gvj09abxf16ssl1xy0ay3ljq4jswbggp6wiiq459minv"))))
|
|
|
|
|
(build-system cmake-build-system)
|
2020-03-22 06:33:00 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config swig))
|
2020-03-22 06:33:00 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list curl
|
|
|
|
|
fftw
|
|
|
|
|
gdal
|
|
|
|
|
hdf5
|
|
|
|
|
jasper
|
|
|
|
|
libharu
|
|
|
|
|
libtiff
|
|
|
|
|
opencv
|
|
|
|
|
postgresql
|
|
|
|
|
proj
|
|
|
|
|
python
|
|
|
|
|
qhull
|
|
|
|
|
unixodbc
|
|
|
|
|
vigra
|
|
|
|
|
wxwidgets))
|
2020-03-22 06:33:00 -04:00
|
|
|
|
(arguments
|
2022-07-06 14:14:08 -04:00
|
|
|
|
'(#:tests? #f
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'cd-to-source-dir
|
|
|
|
|
(lambda _
|
|
|
|
|
(chdir "saga-gis"))))))
|
2020-03-22 06:33:00 -04:00
|
|
|
|
(synopsis "System for Automated Geoscientific Analyses")
|
|
|
|
|
(description
|
|
|
|
|
"SAGA (System for Automated Geoscientific Analyses) is a Geographic
|
|
|
|
|
Information System (GIS) software. It has been designed for an easy and
|
|
|
|
|
effective implementation of spatial algorithms and it offers a comprehensive,
|
|
|
|
|
growing set of geoscientific methods.")
|
|
|
|
|
(home-page "http://www.saga-gis.org")
|
|
|
|
|
(license (list license:gpl2+ license:lgpl2.1+))))
|
2020-03-24 05:20:27 -04:00
|
|
|
|
|
|
|
|
|
(define-public qgis
|
|
|
|
|
(package
|
|
|
|
|
(name "qgis")
|
2022-09-02 10:31:26 -04:00
|
|
|
|
(version "3.26.2")
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://qgis.org/downloads/qgis-"
|
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
2022-09-02 10:31:26 -04:00
|
|
|
|
(base32 "1hsq3wchsf7db7134fgg9xzzap35q1s4r6649d0krbw80xw5asca"))))
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build cmake-build-system)
|
|
|
|
|
((guix build python-build-system) #:prefix python:)
|
|
|
|
|
(guix build qt-utils)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
#:imported-modules (,@%cmake-build-system-modules
|
|
|
|
|
(guix build python-build-system)
|
|
|
|
|
(guix build qt-utils))
|
2022-01-23 16:04:26 -05:00
|
|
|
|
#:configure-flags
|
|
|
|
|
'("-DWITH_QTWEBKIT=NO")
|
2020-03-24 05:20:27 -04:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
;; Configure correct path to PyQt5 SIP directory
|
|
|
|
|
(add-after 'unpack 'configure-pyqt5-sip-path
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2021-02-08 09:43:20 -05:00
|
|
|
|
(substitute* "cmake/FindPyQt5.py"
|
|
|
|
|
(("sip_dir = cfg.default_sip_dir")
|
|
|
|
|
(string-append "sip_dir = \""
|
|
|
|
|
(assoc-ref inputs "python-pyqt+qscintilla")
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"/share/sip\"")))
|
2021-02-22 05:15:21 -05:00
|
|
|
|
;; Fix building with python-sip@5.
|
|
|
|
|
;;
|
|
|
|
|
;; The reason for this is that python-sip@5 introduces some
|
|
|
|
|
;; changes such as a new build system 'sip-build' as well as the
|
|
|
|
|
;; use of the path "/lib/pythonX.X/site-packages/*/bindings/"
|
|
|
|
|
;; instead of "/share/sip/" for .sip files. However, we do not
|
|
|
|
|
;; actually use that those yet. QGIS detects SIP5 and assumes we
|
|
|
|
|
;; are, messing up the build. The long term solution is to fully
|
|
|
|
|
;; upgrade SIP, use sip-build and fix all failing packages, but
|
|
|
|
|
;; for now I just want to get the build working.
|
2022-09-02 10:31:26 -04:00
|
|
|
|
(substitute* "cmake/FindPyQt5.cmake"
|
|
|
|
|
(("SET\\(PYQT5_SIP_DIR \"\\$\\{Python_SITEARCH\\}/PyQt5/bindings\"\\)")
|
|
|
|
|
(string-append "SET(PYQT5_SIP_DIR \""
|
2021-02-22 05:15:21 -05:00
|
|
|
|
(assoc-ref inputs "python-pyqt+qscintilla")
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"/share/sip\")")))
|
|
|
|
|
(substitute* (list "tests/code_layout/test_qt_imports.sh"
|
|
|
|
|
"tests/code_layout/test_qgsscrollarea.sh")
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(("\\$\\(git rev-parse --show-toplevel\\)")
|
2022-09-02 10:31:26 -04:00
|
|
|
|
(getcwd)))))
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(replace 'check
|
2022-01-23 16:04:26 -05:00
|
|
|
|
(lambda* (#:key inputs tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(setenv "HOME" "/tmp")
|
2021-07-14 08:09:51 -04:00
|
|
|
|
(system "Xvfb :1 &")
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(setenv "DISPLAY" ":1")
|
|
|
|
|
(setenv "TRAVIS" "true")
|
|
|
|
|
(setenv "CTEST_OUTPUT_ON_FAILURE" "1")
|
|
|
|
|
(invoke "ctest"
|
|
|
|
|
"-E" (string-join
|
|
|
|
|
'(;; Disable tests that require network access
|
|
|
|
|
"qgis_filedownloader"
|
|
|
|
|
;; TODO: Find why the following tests fail
|
2021-02-08 09:43:20 -05:00
|
|
|
|
"ProcessingQgisAlgorithmsTestPt1"
|
|
|
|
|
"ProcessingQgisAlgorithmsTestPt2"
|
|
|
|
|
"ProcessingQgisAlgorithmsTestPt3"
|
|
|
|
|
"ProcessingQgisAlgorithmsTestPt4"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"ProcessingGdalAlgorithmsVectorTest"
|
|
|
|
|
"ProcessingGrass7AlgorithmsImageryTest"
|
|
|
|
|
"ProcessingGrass7AlgorithmsRasterTestPt1"
|
|
|
|
|
"ProcessingGrass7AlgorithmsRasterTestPt2"
|
|
|
|
|
"ProcessingGrass7AlgorithmsVectorTest"
|
|
|
|
|
"ProcessingOtbAlgorithmsTest"
|
|
|
|
|
"test_core_authmanager"
|
|
|
|
|
"test_core_compositionconverter"
|
2022-09-08 16:14:38 -04:00
|
|
|
|
"test_core_coordinatereferencesystem"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"test_core_gdalutils"
|
|
|
|
|
"test_core_labelingengine"
|
|
|
|
|
"test_core_layout"
|
|
|
|
|
"test_core_layouthtml"
|
|
|
|
|
"test_core_layoutlabel"
|
|
|
|
|
"test_core_layoutmultiframe"
|
|
|
|
|
"test_core_layoutpicture"
|
|
|
|
|
"test_core_legendrenderer"
|
|
|
|
|
"test_core_networkaccessmanager"
|
2022-09-08 16:14:38 -04:00
|
|
|
|
"test_core_rasterfilewriter"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"test_core_tiledownloadmanager"
|
|
|
|
|
"test_gui_dualview"
|
|
|
|
|
"test_gui_htmlwidgetwrapper"
|
|
|
|
|
"test_gui_filedownloader"
|
|
|
|
|
"test_gui_queryresultwidget"
|
|
|
|
|
"test_analysis_processingalgspt2"
|
|
|
|
|
"test_analysis_processing"
|
|
|
|
|
"test_provider_wcsprovider"
|
|
|
|
|
"qgis_grassprovidertest7"
|
|
|
|
|
"test_app_gpsinformationwidget"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsAnnotation"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsAttributeTableModel"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsAuthenticationSystem"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsExternalStorageWebDAV"
|
|
|
|
|
"PyQgsFieldFormattersTest"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsFileUtils"
|
|
|
|
|
"PyQgsGeometryTest"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsGoogleMapsGeocoder"
|
|
|
|
|
"PyQgsHashLineSymbolLayer"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsLayoutExporter"
|
2021-02-08 09:43:20 -05:00
|
|
|
|
"PyQgsLayoutHtml"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsLineSymbolLayers"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsMapLayer"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsNetworkContentFetcherRegistry"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsOGRProviderGpkg"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsOGRProviderSqlite"
|
|
|
|
|
"PyQgsPalLabelingCanvas"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsPalLabelingLayout"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsPalLabelingPlacement"
|
|
|
|
|
"PyQgsProcessExecutable"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsProviderConnectionGpkg"
|
2021-02-08 09:43:20 -05:00
|
|
|
|
"PyQgsProviderConnectionSpatialite"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsOGRProvider"
|
2021-02-08 09:43:20 -05:00
|
|
|
|
"PyQgsSpatialiteProvider"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsVectorFileWriter"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsVectorLayerEditBuffer"
|
|
|
|
|
"PyQgsVectorLayerEditBufferGroup"
|
|
|
|
|
"PyQgsVectorLayerProfileGenerator"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"PyQgsVirtualLayerProvider"
|
|
|
|
|
"PyQgsWFSProvider"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"PyQgsWFSProviderGUI"
|
|
|
|
|
"PyQgsOapifProvider"
|
|
|
|
|
"PyQgsLayerDependencies"
|
|
|
|
|
"PyQgsDBManagerGpkg"
|
|
|
|
|
"PyQgsDBManagerSpatialite"
|
|
|
|
|
"PyQgsAuxiliaryStorage"
|
|
|
|
|
"PyQgsSelectiveMasking"
|
2020-03-24 05:20:27 -04:00
|
|
|
|
"qgis_shellcheck"
|
2021-02-08 09:43:20 -05:00
|
|
|
|
"qgis_sipify"
|
2022-09-02 10:31:26 -04:00
|
|
|
|
"qgis_sip_include"
|
|
|
|
|
"qgis_sip_uptodate")
|
2022-01-23 16:04:26 -05:00
|
|
|
|
"|")))))
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(add-after 'install 'wrap-python
|
|
|
|
|
(assoc-ref python:%standard-phases 'wrap))
|
|
|
|
|
(add-after 'wrap-python 'wrap-qt
|
2020-12-25 17:02:18 -05:00
|
|
|
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2022-09-02 10:31:26 -04:00
|
|
|
|
(wrap-qt-program "qgis" #:output out #:inputs inputs))))
|
2020-04-04 13:57:50 -04:00
|
|
|
|
(add-after 'wrap-qt 'wrap-gis
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
2021-02-08 07:36:55 -05:00
|
|
|
|
;; TODO: Find if there is a way to get SAGA to work.
|
|
|
|
|
;; Currently QGIS says "version of SAGA not supported".
|
|
|
|
|
;; Disable it for now.
|
2020-04-04 13:57:50 -04:00
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
2021-02-08 07:36:55 -05:00
|
|
|
|
;;(saga (string-append (assoc-ref inputs "saga") "/bin"))
|
2020-04-04 13:57:50 -04:00
|
|
|
|
(grass-version ,(package-version grass))
|
|
|
|
|
(grass-majorminor (string-join
|
|
|
|
|
(list-head
|
|
|
|
|
(string-split grass-version #\.) 2)
|
|
|
|
|
""))
|
|
|
|
|
(grass (string-append (assoc-ref inputs "grass")
|
|
|
|
|
"/grass" grass-majorminor)))
|
|
|
|
|
(wrap-program (string-append out "/bin/qgis")
|
2021-02-08 07:36:55 -05:00
|
|
|
|
;;`("PATH" ":" prefix (,saga))
|
2020-04-04 13:57:50 -04:00
|
|
|
|
`("QGIS_PREFIX_PATH" = (,out))
|
2022-09-02 10:31:26 -04:00
|
|
|
|
`("GISBASE" = (,grass)))))))))
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(inputs
|
2022-09-02 10:31:26 -04:00
|
|
|
|
(list bash-minimal
|
|
|
|
|
exiv2
|
2021-12-13 11:18:24 -05:00
|
|
|
|
expat
|
|
|
|
|
gdal
|
|
|
|
|
geos
|
|
|
|
|
gpsbabel
|
|
|
|
|
grass
|
|
|
|
|
gsl
|
|
|
|
|
hdf5
|
|
|
|
|
libspatialindex
|
|
|
|
|
libspatialite
|
|
|
|
|
libxml2
|
|
|
|
|
libzip
|
|
|
|
|
netcdf
|
|
|
|
|
postgresql
|
|
|
|
|
proj
|
|
|
|
|
protobuf
|
|
|
|
|
python
|
|
|
|
|
python-chardet
|
|
|
|
|
python-dateutil
|
|
|
|
|
python-future
|
|
|
|
|
python-gdal
|
|
|
|
|
python-jinja2
|
|
|
|
|
python-numpy
|
|
|
|
|
python-owslib
|
|
|
|
|
python-psycopg2
|
|
|
|
|
python-pygments
|
|
|
|
|
python-pyqt+qscintilla
|
|
|
|
|
python-pytz
|
|
|
|
|
python-pyyaml
|
|
|
|
|
python-requests
|
|
|
|
|
python-sip
|
|
|
|
|
python-six
|
|
|
|
|
python-urllib3
|
|
|
|
|
qca
|
|
|
|
|
qscintilla
|
|
|
|
|
qtbase-5
|
2022-07-17 21:03:18 -04:00
|
|
|
|
qtdeclarative-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtkeychain
|
|
|
|
|
qtlocation
|
|
|
|
|
qtserialport
|
2022-07-17 01:11:46 -04:00
|
|
|
|
qtsvg-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qwt
|
2022-09-02 10:31:26 -04:00
|
|
|
|
;; saga
|
|
|
|
|
sqlite
|
|
|
|
|
(list zstd "lib")))
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list bison
|
|
|
|
|
flex
|
|
|
|
|
perl
|
|
|
|
|
perl-yaml-tiny
|
|
|
|
|
pkg-config
|
|
|
|
|
python-mock
|
|
|
|
|
python-nose2
|
2022-09-02 10:31:26 -04:00
|
|
|
|
python-pyqt-builder
|
2022-07-19 16:52:05 -04:00
|
|
|
|
qttools-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
shellcheck
|
|
|
|
|
xorg-server-for-tests))
|
2020-03-24 05:20:27 -04:00
|
|
|
|
(home-page "https://qgis.org")
|
|
|
|
|
(synopsis "Geographical information system")
|
|
|
|
|
(description "QGIS is an easy to use Geographical Information
|
|
|
|
|
System (GIS). It is a GIS data viewer and editor. QGIS supports a number of
|
|
|
|
|
raster and vector data formats, with new support easily added using the plugin
|
|
|
|
|
architecture.")
|
|
|
|
|
(license
|
|
|
|
|
(list
|
|
|
|
|
license:asl1.1
|
|
|
|
|
license:asl2.0
|
|
|
|
|
license:bsd-2
|
|
|
|
|
license:bsd-3
|
|
|
|
|
license:boost1.0
|
|
|
|
|
license:cc-by3.0
|
|
|
|
|
license:cc-by4.0
|
|
|
|
|
license:cc-by-sa3.0
|
|
|
|
|
license:cc-by-sa4.0
|
|
|
|
|
(license:fsdg-compatible "https://www.deviantart.com/elvensword")
|
|
|
|
|
(license:fsf-free "file://debian/copyright" "Go Squared")
|
|
|
|
|
license:expat
|
|
|
|
|
license:fdl1.2+
|
|
|
|
|
(license:fsf-free
|
|
|
|
|
"https://www.deviantart.com/webgoddess/art/Reddish-Inspired-Gradients-42208824")
|
|
|
|
|
(license:fsf-free
|
|
|
|
|
"file://debian/copyright"
|
|
|
|
|
"QT-Commercial or LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3")
|
|
|
|
|
license:gpl2
|
|
|
|
|
license:gpl2+
|
|
|
|
|
license:gpl3
|
|
|
|
|
license:gpl3+
|
|
|
|
|
license:isc
|
|
|
|
|
license:lgpl2.0+
|
|
|
|
|
license:lgpl2.1
|
|
|
|
|
license:lgpl2.1+
|
|
|
|
|
license:lgpl3
|
|
|
|
|
(license:non-copyleft "file://debian/copyright" "BSD-like-gist")
|
|
|
|
|
(license:non-copyleft "file://debian/copyright" "Jim Mossman Attribution")
|
|
|
|
|
(license:non-copyleft
|
|
|
|
|
"https://www.ncl.ucar.edu/Download/NCL_source_license.shtml"
|
|
|
|
|
"NCL Source Code License")
|
|
|
|
|
license:ogl-psi1.0
|
|
|
|
|
license:opl1.0+
|
|
|
|
|
license:public-domain
|
|
|
|
|
license:qwt1.0))))
|
2020-07-21 03:58:19 -04:00
|
|
|
|
|
|
|
|
|
(define-public python-geographiclib
|
|
|
|
|
(package
|
|
|
|
|
(name "python-geographiclib")
|
|
|
|
|
(version "1.50")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "geographiclib" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0cn6ap5fkh3mkfa57l5b44z3gvz7j6lpmc9rl4g2jny2gvp4dg8j"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(home-page "https://geographiclib.sourceforge.io/1.50/python/")
|
|
|
|
|
(synopsis "Python geodesic routines from GeographicLib")
|
|
|
|
|
(description
|
|
|
|
|
"This is a python implementation of the geodesic routines in GeographicLib.")
|
|
|
|
|
(license license:expat)))
|
2020-07-21 04:02:42 -04:00
|
|
|
|
|
|
|
|
|
(define-public python-geopy
|
|
|
|
|
(package
|
|
|
|
|
(name "python-geopy")
|
|
|
|
|
(version "2.0.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "geopy" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0fx0cv0kgbvynpmjgsvq2fpsyngd5idiscdn8pd5201f1ngii3mq"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-geographiclib))
|
2020-07-21 04:02:42 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list python-async-generator
|
|
|
|
|
python-coverage
|
|
|
|
|
python-flake8
|
|
|
|
|
python-isort
|
|
|
|
|
python-pytest
|
|
|
|
|
python-pytest-aiohttp
|
|
|
|
|
python-readme-renderer
|
|
|
|
|
python-pytz))
|
2020-07-21 04:02:42 -04:00
|
|
|
|
(home-page "https://github.com/geopy/geopy")
|
|
|
|
|
(synopsis "Geocoding library for Python")
|
|
|
|
|
(description "@code{geopy} is a Python client for several popular geocoding
|
|
|
|
|
web services. @code{geopy} makes it easy for Python developers to locate the
|
|
|
|
|
coordinates of addresses, cities, countries, and landmarks across the globe
|
|
|
|
|
using third-party geocoders and other data sources.")
|
|
|
|
|
(license license:expat)))
|
2021-07-14 13:55:52 -04:00
|
|
|
|
|
2021-10-09 09:25:20 -04:00
|
|
|
|
(define-public gplates
|
|
|
|
|
(package
|
|
|
|
|
(name "gplates")
|
2022-06-14 14:15:35 -04:00
|
|
|
|
;; Note: use a pre-release to cope with newer Boost, ref
|
|
|
|
|
;; https://discourse.gplates.org/t/compilation-error-with-boost-1-77/452/3
|
|
|
|
|
(version "2.3.01-beta.3")
|
2021-10-09 09:25:20 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2022-06-14 14:15:35 -04:00
|
|
|
|
(uri "https://cloudstor.aarnet.edu.au/plus/s\
|
|
|
|
|
/ojsYNOyUYE3evNp/download?path=%2F&files=gplates_2.3.1-beta.3_src.zip")
|
|
|
|
|
(file-name (string-append name "-" version ".zip"))
|
2021-10-09 09:25:20 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-06-14 14:15:35 -04:00
|
|
|
|
"06i87dfab0cq9gdi5mh6sf9wigawpp0d05zbyslv910443i26gwv"))))
|
2021-10-09 09:25:20 -04:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags (list "-DBoost_NO_BOOST_CMAKE=ON")
|
2022-06-14 14:15:35 -04:00
|
|
|
|
#:tests? #f)) ;no test target
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list unzip)) ;for the beta
|
2021-10-09 09:25:20 -04:00
|
|
|
|
(inputs
|
2022-06-14 14:15:35 -04:00
|
|
|
|
(list boost
|
|
|
|
|
cgal
|
2022-09-08 16:14:37 -04:00
|
|
|
|
curl
|
2022-06-14 14:15:35 -04:00
|
|
|
|
gdal
|
|
|
|
|
glew
|
|
|
|
|
glu
|
|
|
|
|
gmp
|
|
|
|
|
mesa
|
|
|
|
|
mpfr
|
|
|
|
|
proj
|
|
|
|
|
python-3
|
|
|
|
|
python-numpy
|
|
|
|
|
qtbase-5
|
2022-07-17 01:11:46 -04:00
|
|
|
|
qtsvg-5
|
2022-06-14 14:15:35 -04:00
|
|
|
|
qtxmlpatterns
|
|
|
|
|
qwt
|
|
|
|
|
zlib))
|
2021-10-09 09:25:20 -04:00
|
|
|
|
(home-page "https://www.gplates.org")
|
|
|
|
|
(synopsis "Plate tectonics simulation program")
|
|
|
|
|
(description "GPlates is a plate tectonics program. Manipulate
|
|
|
|
|
reconstructions of geological and paleogeographic features through geological
|
|
|
|
|
time. Interactively visualize vector, raster and volume data.")
|
|
|
|
|
(license license:gpl2+)))
|