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.
This commit is contained in:
parent
da2ee1b135
commit
6119120f6d
1 changed files with 10 additions and 3 deletions
|
@ -693,7 +693,7 @@ key-bindings (Emacs, vi, CUA), and is fully configurable in Common Lisp.")
|
||||||
(define-public lagrange
|
(define-public lagrange
|
||||||
(package
|
(package
|
||||||
(name "lagrange")
|
(name "lagrange")
|
||||||
(version "1.7.2")
|
(version "1.8.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(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/"
|
(string-append "https://git.skyjake.fi/skyjake/lagrange/releases/"
|
||||||
"download/v" version "/lagrange-" version ".tar.gz"))
|
"download/v" version "/lagrange-" version ".tar.gz"))
|
||||||
(sha256
|
(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)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #false ;no tests
|
`(#:tests? #false ;no tests
|
||||||
#:configure-flags (list "-DTFDN_ENABLE_SSE41=OFF")))
|
#:configure-flags (list "-DTFDN_ENABLE_SSE41=OFF")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("zip" ,zip)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("fribidi" ,fribidi)
|
`(("fribidi" ,fribidi)
|
||||||
("harfbuzz" ,harfbuzz)
|
("harfbuzz" ,harfbuzz)
|
||||||
|
|
Reference in a new issue