From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34633) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hbq1v-0007oV-LH for guix-patches@gnu.org; Fri, 14 Jun 2019 13:30:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hbq1k-0005eW-Ah for guix-patches@gnu.org; Fri, 14 Jun 2019 13:30:15 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52410) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hbq1c-0005SH-0F for guix-patches@gnu.org; Fri, 14 Jun 2019 13:30:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hbq1b-00047O-QD for guix-patches@gnu.org; Fri, 14 Jun 2019 13:30:03 -0400 Subject: [bug#36211] [PATCH 2/3] gnu: Add osm-gps-map Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34452) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hbq17-0007cs-7K for guix-patches@gnu.org; Fri, 14 Jun 2019 13:29:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hbq15-0004w9-BB for guix-patches@gnu.org; Fri, 14 Jun 2019 13:29:32 -0400 Received: from mout02.posteo.de ([185.67.36.66]:38943) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hbq14-0004rx-Oh for guix-patches@gnu.org; Fri, 14 Jun 2019 13:29:31 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id C79732400FF for ; Fri, 14 Jun 2019 19:29:28 +0200 (CEST) From: Guillaume LE VAILLANT Date: Fri, 14 Jun 2019 19:27:50 +0200 Message-Id: <20190614172751.22468-3-glv@posteo.net> In-Reply-To: <20190614172751.22468-1-glv@posteo.net> References: <20190614172751.22468-1-glv@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36211@debbugs.gnu.org Cc: glv@posteo.net * gnu/packages/geo.scm (osm-gps-map): New variable. --- gnu/packages/geo.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index ec5ace3519..07831c85ca 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -869,3 +869,39 @@ dropping features at lower levels.") OpenStreetMap project. They can be used to convert, filter and update OpenStreetMap data files.") (license license:agpl3))) + +(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 + `(("gnome-common" ,gnome-common) + ("gtk-doc" ,gtk-doc) + ("pkg-config" ,pkg-config))) + (inputs + `(("cairo" ,cairo) + ("glib" ,glib) + ("gobject-introspection" ,gobject-introspection) + ("gtk+" ,gtk+) + ("libsoup" ,libsoup))) + (home-page "https://nzjrs.github.io/osm-gps-map/") + (synopsis "Gtk+ widget for displaying OpenStreetMap tiles") + (description + "A Gtk+ widget (and Python bindings) that when given GPS coordinate= s, +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+))) --=20 2.22.0