unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 7c4667e92e12807d732e4526c67431b501758365 2206 bytes (raw)
name: gnu/packages/maps.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 
(define-module (gnu packages maps)
  #:use-module (guix build-system glib-or-gtk)
  #:use-module (guix download)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (gnu packages glib) ; intltool
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages webkit)
  #:use-module (gnu packages xml))

(define-public gnome-maps
  (package
    (name "gnome-maps")
    (version "3.18.2")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://gnome/sources/" name "/"
                                  (version-major+minor version) "/"
                                  name "-" version ".tar.xz"))
              (sha256
               (base32
                "0y4jmh5hwskh2mnladh9hxp9k8as7crm8wwwiifvxsjjj9az2gv9"))))
    (build-system glib-or-gtk-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-after
          'install 'wrap
          (lambda* (#:key outputs #:allow-other-keys)
            (let ((out (assoc-ref outputs "out"))
                  (gi-typelib-path (getenv "GI_TYPELIB_PATH")))
              (wrap-program (string-append out "/bin/gnome-maps")
               `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
              #t))))))
    (native-inputs
     `(
       ("gobject-introspection" ,gobject-introspection)
       ("intltool" ,intltool)
       ("pkg-config" ,pkg-config)))
    (inputs
     `(("folks" ,folks)
       ("libchamplain" ,libchamplain)
       ("libgee" ,libgee)
       ("libxml2" ,libxml2)
       ("geoclue" ,geoclue)
       ("geocode-glib" ,geocode-glib)
       ("gfbgraph" ,gfbgraph)
       ("gjs" ,gjs)
       ("glib" ,glib)
       ("gnome-online-accounts" ,gnome-online-accounts) ; necessary?
       ("rest" ,rest)
       ("webkitgtk" ,webkitgtk))) ; necessary?
    (propagated-inputs
     `(("gtk+3" ,gtk+))) ; necessary?
    (synopsis "Graphical map viewer")
    (description "GNOME Maps is a graphical map viewer.  It uses map data from
the OpenStreetMap project.")
    (home-page "https://wiki.gnome.org/Apps/Maps")
    (license gpl2+)))

debug log:

solving 7c4667e ...
found 7c4667e in https://yhetil.org/guix-devel/0c5bbfdfbb20362f143332e2d5215e8adeae9af2.1460775480.git.leo@famulari.name/

applying [1/1] https://yhetil.org/guix-devel/0c5bbfdfbb20362f143332e2d5215e8adeae9af2.1460775480.git.leo@famulari.name/
diff --git a/gnu/packages/maps.scm b/gnu/packages/maps.scm
new file mode 100644
index 0000000..7c4667e

Checking patch gnu/packages/maps.scm...
Applied patch gnu/packages/maps.scm cleanly.

index at:
100644 7c4667e92e12807d732e4526c67431b501758365	gnu/packages/maps.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).