[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: lagrange: Update to 1.8.2.
From: |
guix-commits |
Subject: |
branch master updated: gnu: lagrange: Update to 1.8.2. |
Date: |
Mon, 15 Nov 2021 03:22:12 -0500 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6119120 gnu: lagrange: Update to 1.8.2.
6119120 is described below
commit 6119120f6dc0a36e8b32a3029ab4ae000cedd7d0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Nov 15 10:17:56 2021 +0200
gnu: lagrange: Update to 1.8.2.
* gnu/packages/web-browsers.scm (lagrange): Update to 1.8.2.
[source]: Add snippet to remove bundled libraries.
[native-inputs]: Add zip.
---
gnu/packages/web-browsers.scm | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index a6d2d91..3b495b8 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -693,7 +693,7 @@ key-bindings (Emacs, vi, CUA), and is fully configurable in
Common Lisp.")
(define-public lagrange
(package
(name "lagrange")
- (version "1.7.2")
+ (version "1.8.2")
(source
(origin
(method url-fetch)
@@ -701,13 +701,20 @@ key-bindings (Emacs, vi, CUA), and is fully configurable
in Common Lisp.")
(string-append "https://git.skyjake.fi/skyjake/lagrange/releases/"
"download/v" version "/lagrange-" version ".tar.gz"))
(sha256
- (base32 "1fr7p0pjli9clsgr0a1fp1pr119r9zqx43dvhc1g91bj742mxhfa"))))
+ (base32 "1wb4gqn32sja2qik04chlcl743arr6c844zczy1a2aad5103cnip"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; TODO: unbundle fonts.
+ (delete-file-recursively "lib/fribidi")
+ (delete-file-recursively "lib/harfbuzz")))))
(build-system cmake-build-system)
(arguments
`(#:tests? #false ;no tests
#:configure-flags (list "-DTFDN_ENABLE_SSE41=OFF")))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+ ("zip" ,zip)))
(inputs
`(("fribidi" ,fribidi)
("harfbuzz" ,harfbuzz)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: lagrange: Update to 1.8.2.,
guix-commits <=