summary refs log tree commit diff
diff options
context:
space:
mode:
authorParnikkapore via Guix-patches via <guix-patches@gnu.org>2023-03-14 23:20:13 +0800
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-03-16 00:10:58 +0100
commita148da0125ac74d842c17d9743412e4fe926c308 (patch)
tree9ac397e85f22a3a18ab3000f3fc331b1faba4e7c
parent04b773ad9b4208093c383f9d2ec9d8bdf797859d (diff)
downloadguix-a148da0125ac74d842c17d9743412e4fe926c308.tar.gz
gnu: lagrange: Update to 1.15.4.
* gnu/packages/web-browsers.scm (lagrange): Update to 1.15.4.
[native-search-paths]: Add share to XDG_DATA_DIRS.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/web-browsers.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 6f9400c6d5..7c0497be41 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -705,7 +705,7 @@ is fully configurable and extensible in Common Lisp.")
 (define-public lagrange
   (package
     (name "lagrange")
-    (version "1.15.3")
+    (version "1.15.4")
     (source
      (origin
        (method url-fetch)
@@ -713,7 +713,7 @@ is fully configurable and extensible in Common Lisp.")
         (string-append "https://git.skyjake.fi/skyjake/lagrange/releases/"
                        "download/v" version "/lagrange-" version ".tar.gz"))
        (sha256
-        (base32 "02wd31k2pz0km34k0lw5gd9wk1k77zfsvssmjxka1q7mcdj9ld09"))
+        (base32 "117n1v8vr966lah98g22zn15y3d2va0mf1yj99smn5dizy75akm9"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -738,6 +738,10 @@ is fully configurable and extensible in Common Lisp.")
            pcre
            sdl2
            zlib))
+    (native-search-paths
+     (list (search-path-specification
+            (variable "XDG_DATA_DIRS")
+            (files '("share")))))
     (home-page "https://gmi.skyjake.fi/lagrange/")
     (synopsis "Graphical Gemini client")
     (description