gnu: mu: Update to 1.10.8.
Version 1.10.8 fixes the installation of the Guile bindings, so we can enable it again. * gnu/packages/mail.scm (mu): Update to 1.10.7. [inputs]: Add guile-3.0. [arguments]: Add "-Dguile-extension-dir" to #:configure-flags. Add fix-ffi phase to allow Guile module to load its native library. Change-Id: I2a8250d8d6298712ad116b1d88157a4344175722 Signed-off-by: Christopher Baines <mail@cbaines.net>master
parent
03c01580d9
commit
c26ed5d6b9
|
@ -1206,14 +1206,14 @@ security functionality including PGP, S/MIME, SSH, and SSL.")
|
||||||
(define-public mu
|
(define-public mu
|
||||||
(package
|
(package
|
||||||
(name "mu")
|
(name "mu")
|
||||||
(version "1.10.7")
|
(version "1.10.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/djcb/mu/releases/download/v"
|
(uri (string-append "https://github.com/djcb/mu/releases/download/v"
|
||||||
version "/mu-" version ".tar.xz"))
|
version "/mu-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "089w1m6sd0nk9l9j40d357fjym8kxmz7kwh3bclk58jxa6xckapa"))))
|
(base32 "129m6rz8vbd7370c3h3ma66bxqdkm6wsdix5qkmv1vm7sanxh4bb"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config
|
(list pkg-config
|
||||||
|
@ -1221,7 +1221,7 @@ security functionality including PGP, S/MIME, SSH, and SSL.")
|
||||||
gnupg ; for tests
|
gnupg ; for tests
|
||||||
texinfo))
|
texinfo))
|
||||||
(inputs
|
(inputs
|
||||||
(list glib gmime xapian))
|
(list glib gmime guile-3.0 xapian))
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:modules '((guix build meson-build-system)
|
#:modules '((guix build meson-build-system)
|
||||||
|
@ -1229,6 +1229,8 @@ security functionality including PGP, S/MIME, SSH, and SSL.")
|
||||||
(guix build utils))
|
(guix build utils))
|
||||||
#:imported-modules `(,@%meson-build-system-modules
|
#:imported-modules `(,@%meson-build-system-modules
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
|
#:configure-flags
|
||||||
|
#~(list (format #f "-Dguile-extension-dir=~a/lib" #$output))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-bin-references
|
(add-after 'unpack 'patch-bin-references
|
||||||
|
@ -1241,6 +1243,11 @@ security functionality including PGP, S/MIME, SSH, and SSL.")
|
||||||
(substitute* '("lib/tests/bench-indexer.cc"
|
(substitute* '("lib/tests/bench-indexer.cc"
|
||||||
"lib/utils/mu-test-utils.cc")
|
"lib/utils/mu-test-utils.cc")
|
||||||
(("/bin/rm") (which "rm")))))
|
(("/bin/rm") (which "rm")))))
|
||||||
|
(add-after 'install 'fix-ffi
|
||||||
|
(lambda _
|
||||||
|
(substitute* (find-files #$output "mu.scm")
|
||||||
|
(("\"libguile-mu\"")
|
||||||
|
(format #f "\"~a/lib/libguile-mu\"" #$output)))))
|
||||||
(add-after 'install 'install-emacs-autoloads
|
(add-after 'install 'install-emacs-autoloads
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(emacs-generate-autoloads
|
(emacs-generate-autoloads
|
||||||
|
|
Reference in New Issue